How to remove comments in php

藏色散人
Release: 2023-03-03 11:52:02
Original
3690 people have browsed it

php method to remove comments: first open the PHP test code file; then define a "removeComment" method; then remove the content of the comment through the "preg_replace" method; and finally run the PHP file.

How to remove comments in php

Recommended: "PHP Tutorial"

php remove comments

Test code

File: a.php

<?php
/**
 * 加法计算
 * 测试
 */
// 设定$a的值
$a = 10;
// 设定$b的值
$b = 5;
// 加法
$c = $a + $b;
# 输出结果
echo $c;
Copy after login

File: test.php

echo "源码:<br />";
show_source(&#39;./a.php&#39;);
echo "<hr />去除注释后:<br />";
highlight_string(removeComment(file_get_contents(&#39;./a.php&#39;)));

/**
 * 去除PHP代码注释
 * @param  string $content 代码内容
 * @return string 去除注释之后的内容
 */
function removeComment($content){
    return preg_replace("/(\/\*.*\*\/)|(#.*?\n)|(\/\/.*?\n)/s", &#39;&#39;, str_replace(array("\r\n", "\r"), "\n", $content));
}
Copy after login

Test output

Execute test .php, the output is as follows:
How to remove comments in php

Regular Analysis

(\/\*.*\*\/)   匹配 /* */
(#.*?\n)       匹配 #      遇到第一个回车后结束
(\/\/.*?\n)    匹配 //     遇到第一个回车后结束
Copy after login

The above is the detailed content of How to remove comments in php. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!