PHP recursively traverses folders to remove comments and compress php source code

不言
Release: 2023-03-28 22:20:01
Original
1362 people have browsed it

这篇文章主要介绍了PHP递归遍历文件夹去除注释并压缩php源代码的方法,涉及php文件与目录的遍历、读取、判断及使用php_strip_whitespace函数删除注释的相关操作技巧,需要的朋友可以参考下

本文实例讲述了PHP递归遍历文件夹去除注释并压缩代码的方法。分享给大家供大家参考,具体如下:

"; } } } }else{ // 此处无用(因为来的都是目录),如果只转换一个文件,就可以这样使用。 file_put_contents($arr[1].'/'.$dirname,replace_php_src($arr[0].'/'.$dirname) ); } } // 去除注释并压缩,heredoc存在的时候去注释不压缩。 function replace_php_src($src){ $contents = file_get_contents($src); $num = substr_count($contents,'<<<'); // heredoc 是否存在。 $str = ""; if($num > 0){ // heredoc 存在。只去除注释不压缩。 $file = token_get_all($contents); // token_get_all() 将提供的源码按 PHP 标记进行分割. for ($i=0; $i < count($file); $i++) { if( is_string($file[$i]) ){ $str .= $file[$i]; }else{ $name = token_name( $file[$i][0] ); // token_name() 获取提供的 PHP 解析器代号的符号名称. if($name == 'T_COMMENT' || $name == 'T_DOC_COMMENT' ){ // 去除注释 continue; }else{ $str .= $file[$i][1]; } } } }else{ $str = php_strip_whitespace($src); // 不存在 heredoc 。因为他会错误解析。 } return $str; }
Copy after login

相关推荐:

PHP实现一维数组与二维数组去重功能

The above is the detailed content of PHP recursively traverses folders to remove comments and compress php source code. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!