我們在使用
最近需要整理一個整站的php代碼規范視圖,前幾天發現phpCB整理視圖非常好,但有個缺點是不能批量處理,使用過程中發現phpCB是一個CMD程序,馬上就想到php的system函數調用cmd,想到就做,下面是phpCB批量轉換的php程序:
- < ?
- header("Content-type: text/html; charset=gb2312");
- define('ROOT_PATH', dirname(__FILE__));
- $topath="ww"; //要格式化視圖的目錄名,前後都不要“/”
- $path=ROOT_PATH."/".$topath;
- $arr=get_all_files($path);
- for($i=0;$i($arr);$i++)
- {
- $phpext=fileext($arr[$i]);
- if($phpext=="php")
- {
- $cmd="phpCB.exe ".$arr[$i]." > ".$arr[$i].".phpCB";
- system($cmd);
- unlink($arr[$i]);
- @rename($arr[$i].".phpCB",$arr[$i]);
- }
- }
- function get_all_files($path){
- $list = array();
- foreach(glob($path . '/*') as $item){
- if(is_dir($item)){
- $list = array_merge($list , get_all_files( $item ));
- } else {
- $list[] = $item;
- }
- }
- return $list;
- }
- function fileext($filename) {
- return trim(substr(strrchr($filename, '.'), 1, 10));
- }
- ?>
phpCB批量轉換的使用方法:把phpCB.exe放在windows/system32/目錄下,php執行程序和要轉換的文件夾放同一級路徑,先配置$topath,然後在浏覽器裡訪問本程序,沒有結果輸出。