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

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

最近需要整理一个整站的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<count($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,然后在浏览器里访问本程序,没有结果输出。

相关文章

学习PHP的数组总结【经验】

PHP有很多关于数组的函数,方便数组操作。 定义: 数组每个实体包含两个项:key和value,可以通过查询键来获取其相应的值。这些键可以是数值(numerical)键或关联(assoc...

将一维或多维的数组连接成一个字符串的php代码

复制代码 代码如下: /* * ————————————————- * @file : 5.php * @function : arr2str * @copyright : 2002-2...

PHP多维数组排序array详解

PHP数组Array按字段排序 /** * Sort array by filed and type, common utility method. * @param...

redis查看连接数及php模拟并发创建redis连接的方法

max_redis.php <?php set_time_limit (0); for($i=1;$i<=1050;$i++){ exec("nohup p...

php在项目中寻找代码的坏味道(综艺命名)

php在项目中寻找代码的坏味道(综艺命名)

漫画篇 查字典   这个是我比较习惯的方式,打开字典,把中文放进去,看它能给我什么好的名字。             &nb...