php

位置:IT落伍者 >> php >> 浏览文章

深入解析phpCB批量转换的代码示例


发布日期:2021年08月07日
 
深入解析phpCB批量转换的代码示例

我们在使用PHP语言的时候会遇到转换图片文件的需求如果实现批量转换的话就能节约大量的时间下面我们就为大家具体讲解有关phpCB批量转换的方法

最近需要整理一个整站的php代码规范视图前几天发现phpCB整理视图非常好但有个缺点是不能批量处理使用过程中发现phpCB是一个CMD程序马上就想到php的system函数调用cmd想到就做下面是phpCB批量转换的php程序

复制代码 代码如下:
< ?  
header("Contenttype: text/html; charset=gb");  
define(ROOT_PATH dirname(__FILE__));  
$topath="ww"; //要格式化视图的目录名前后都不要“/”  
$path=ROOT_PATH"/"$topath;  
$arr=get_all_files($path);  
for($i=;$i<count($arr);$i++)  
{  
$phpext=fileext($arr[$i]);  
if($phpext=="php")  
{  
$cmd="phpCBexe "$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 ) ));  
}  
?>  


phpCB批量转换的使用方法把phpCBexe放在windows/system/目录下php执行程序和要转换的文件夹放同一级路径先配置$topath然后在浏览器里访问本程序没有结果输出

               

上一篇:php foreach与for语句用法区别介绍

下一篇:PHP采集代码实例