您好,欢迎来到三六零分类信息网!老站,搜索引擎当天收录,欢迎发信息

php 去除代码中的空白和注释

2025/4/28 9:56:59发布16次查看
无详细内容 无 /** * 去除代码中的空白和注释 * @param string $content 代码内容 * @return string */function strip_whitespace($content) { $stripstr = ''; //分析php源码 $tokens = token_get_all($content); $last_space = false; for ($i = 0, $j = co
/** * 去除代码中的空白和注释 * @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 .= <<
该用户其它信息

VIP推荐

免费发布信息,免费发布B2B信息网站平台 - 三六零分类信息网 沪ICP备09012988号-2
企业名录 Product