php常规注释删除
如何删除多行注释? ( /* comment php */
) 来自文件 .php 如何删除单个评论? ( // comment
) 来自 file.php 如何删除输入结束行? 样本 : 单个注释行
$G["url"] = "http://".$_SERVER["HTTP_HOST"]
multi comment line
/*
* 310
* - "::"
* - $col
*/
how remove multi line comment ? ( /* comment php */
) from file .php
how remove single comment ? ( // coment
) from file.php
how remove enter end line ?
sample :
single comment line
$G["url"] = "http://".$_SERVER["HTTP_HOST"]
multi comment line
/*
* 310
* - "::"
* - $col
*/
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
尝试使用下面发布的代码,它甚至会忽略“ /* comment2 */ ”等字符串上的注释标记,
归功于 gelamu 函数 compress_php_src()。
Try using the code posted below, it even ignores comment tokens on strings like " /* comment2 */ "
Credits to gelamu function compress_php_src().
没有理由从代码中删除注释。处理它们的开销非常小,以至于不值得付出这样的努力。
There's no reason to remove comments from your code. The overhead from processing them is so incredibly minimal that it doesn't justify the effort.
我想您可能正在寻找 php_strip_whitespace()。
I think you are probably looking for php_strip_whitespace().