php5内置函数:
//返回删除注释和空格后的php源码 php_strip_whitespace()
示例:
自定函数:
/** * 去除代码中的空白和注释 * @param string $content 代码内容 * @return string */ 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; case t_start_heredoc: $stripstr .= <<