//ファイルのすべてのディレクトリを開きます
$dir = "./tp/Home/Lib/Action/" ;
if ( $handle = opendir ( $dir )) {
while ( false !== ( $file = readdir ( $handle ))) {
if ( $file != "." && $file != ".." ) {
F echo $ ファイル。 中 // ファイル内のすべてのコメントとスペースを削除します$ newfile = php_strip_whitespace ($ dir. $ File)
file_put_contents ('./ TP/Home/NewAction/'. Basename ($ file), $ newfile); }
}
closedir ( $handle );
}
?>
上記は、ソース コードからすべてのコメントとスペースを削除し、関連するコンテンツを含めて 1 行に表示する PHP コード暗号化 - php_strip_whitespace 関数を紹介しています。PHP チュートリアルに興味のある友人に役立つことを願っています。