格式化代码php,格式化php代码的两种方法

1/ 组装 phpCodeBeautifier + Emeditor (详细见:php格式化代码+Emeditor 太爽了)

下载phpCB.exe(下载地址:http://www.waterproof.fr/products/phpCodeBeautifier/)

使用Emeditor扩展外部工具:工具->打开外部工具->自定义工具->新建

标题,php代码格式化

命令,点击浏览,找到phpCB.exe的路径

参数,"$(Path)"

初始目录,不填

图标,随便

保存文件,可打勾可不打

使用输出栏,打上勾

之后打开php文件 就能选工具里的php代码格式化,就会输出格式化后的代码。再保存一下。

2/ phpCB批量转换的php程序(详细见:phpCB批量转换php文件视图/)

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

{

$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.exe放在windows/system32/目录下,php执行程序和要转换的文件夹放同一级路径,先配置$topath,然后在浏览器里访问本程序,没有结果输出。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值