详细讲解phpCB批量转换的代码示例

开发 后端
phpCB批量转换的程序代码对于一个新手来说并不是很快就能写出来的。我们在文章中给出了一个范例,希望能作为一个参考学习的对象。

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

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

  1. < ?  
  2. header("Content-type: text/html; charset=gb2312");  
  3. define('ROOT_PATH', dirname(__FILE__));  
  4. $topath="ww"; //要格式化视图的目录名,前后都不要“/”  
  5. $path=ROOT_PATH."/".$topath;  
  6. $arr=get_all_files($path);  
  7. for($i=0;$i<count($arr);$i++)  
  8. {  
  9. $phpext=fileext($arr[$i]);  
  10. if($phpext=="php")  
  11. {  
  12. $cmd="phpCB.exe ".$arr[$i]." > ".$arr[$i].".phpCB";  
  13. system($cmd);  
  14. unlink($arr[$i]);  
  15. @rename($arr[$i].".phpCB",$arr[$i]);  
  16. }  
  17. }  
  18. function get_all_files($path){  
  19. $list = array();  
  20. foreach(glob($path . '/*') as $item){  
  21. if(is_dir($item)){  
  22. $list = array_merge($list , get_all_files( $item ));  
  23. } else {  
  24. $list[] = $item;  
  25. }  
  26. }  
  27. return $list;  
  28. }  
  29. function fileext($filename) {  
  30. return trim(substr(strrchr($filename, '.'), 1, 10));  
  31. }  
  32. ?>  

 

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

 

责任编辑:曹凯 来源: yanglu.org
相关推荐

2010-01-28 16:01:18

Android Jni

2009-12-24 13:51:49

WPF文档打印

2020-12-02 10:27:40

C语言

2009-12-02 10:49:59

PHP解析XML元素结

2010-03-05 15:01:29

Python解析XML

2010-09-25 14:59:54

SQL语句

2009-04-03 08:21:37

AndroidGoogle移动OS

2009-12-03 17:57:35

PHP重定向代码

2013-01-10 15:36:44

Android开发组件Intent

2010-01-06 09:40:07

Ubuntu时间设置

2010-05-17 16:31:04

IIS Request

2023-03-17 08:11:25

2018-03-15 14:18:32

润乾漏斗转换集算示例

2010-01-20 14:32:12

VB.NET转换运算符

2023-11-26 00:13:16

开源数据Logstash

2009-09-25 17:03:29

Hibernate是什

2009-12-14 11:29:19

Linux查看命令

2009-11-30 09:35:15

PHP递归算法

2011-06-14 15:39:46

单元测试

2009-11-30 14:08:42

PHP字符串原理
点赞
收藏

51CTO技术栈公众号