当前位置:Gxlcms > PHP教程 > PHP代码加密--php_strip_whitespace函数,去掉源代码所有注释和空格并显示在一行

PHP代码加密--php_strip_whitespace函数,去掉源代码所有注释和空格并显示在一行

时间:2021-07-01 10:21:17 帮助过:10人阅读

// 打开文件所有目录
$dir = "./tp/Home/Lib/Action/" ;

if ( $handle = opendir ( $dir )) {

while ( false !== ( $file = readdir ( $handle ))) {

if ( $file != "." && $file != ".." ) {

echo $file . '
' ;

// 去掉文件中的所有注释和空格
$newFile = php_strip_whitespace($dir . $file);
file_put_contents('./tp/Home/Lib/NewAction/' . basename($file), $newFile);

}

}

closedir ( $handle );

}

?>

以上就介绍了PHP代码加密 -- php_strip_whitespace函数,去掉源代码所有注释和空格并显示在一行,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。

人气教程排行