Home  >  Article  >  Backend Development  >  How to remove comments in php using regular expressions

How to remove comments in php using regular expressions

王林
王林Original
2020-09-28 09:14:021971browse

php uses regular expressions to remove comments: ["/(\/\*.*\*\/)|(#.*?\n)|(\/\/.*?\n) /s"]. [(\/\/.*?\n)] means matching [//] and ends after encountering the first carriage return.

How to remove comments in php using regular expressions

Specific method:

(Recommended tutorial: php video tutorial)

File: a .PHP

File: test.php

echo "源码:
"; show_source('./a.php'); echo "
去除注释后:
"; highlight_string(removeComment(file_get_contents('./a.php'))); /** * 去除PHP代码注释 * @param string $content 代码内容 * @return string 去除注释之后的内容 */ function removeComment($content){ return preg_replace("/(\/\*.*\*\/)|(#.*?\n)|(\/\/.*?\n)/s", '', str_replace(array("\r\n", "\r"), "\n", $content)); }

Test output:

Execute test.php, the output is as follows:

How to remove comments in php using regular expressions

Regular analysis:

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

Related recommendations: php training

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

Statement:
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