// 開啟檔案所有目錄
$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); basename($file), $newFile);
}
closedir ( $handle );
}
?>
以上就介紹了PHP程式碼加密 -- php_strip_whitespace函數,去掉原始碼所有註解和空格並顯示在一行,包括了方面的內容,希望對PHP教學有興趣的朋友有所幫助。