最近我從thinkphp的‘RUNTIME_ALLINONE'借鑒到經驗:不怕緩存多,就怕調用亂,索性將所有常用的文件全部合並成一個文件,豈不美哉。。。
復制代碼 代碼如下:
function strip_whitespace($content) {
$stripStr = '';
//分析php源碼
$tokens = token_get_all ($content);
$last_space = false;
for ($i = 0, $j = count ($tokens); $i < $j; $i++){
if (is_string ($tokens[$i])){
$last_space = false;
$stripStr .= $tokens[$i];
}
else{
switch ($tokens[$i][0]){
//過濾各種PHP注釋
case T_COMMENT:
case T_DOC_COMMENT:
break;
//過濾空格
case T_WHITESPACE:
if (!$last_space){
$stripStr .= ' ';
$last_space = true;
}
break;
default:
$last_space = false;
$stripStr .= $tokens[$i][1];
}
}
}
return $stripStr;
}
該自定義函數有效解決了php_strip_whitespace系統內置去注釋空格函數不能正確理解<<<EOT(heredoc)的問題
使用方法
復制代碼 代碼如下:
$str = strip_whitespace('<?php'.$str);
前面一定要拼接這個,我也搞不懂,不拼接的話執行生成的結果是錯誤的結果
php_strip_whitespace
string php_strip_whitespace (string$filename )
如果僅僅是單文件並且沒有heredoc的話,還是建議使用快捷的
php_strip_whitespace函數