Home  >  Article  >  Backend Development  >  How to delete comments in php

How to delete comments in php

藏色散人
藏色散人Original
2020-07-06 11:14:112931browse

How to delete comments in php: first create a file code for testing; then customize a "removeComment" method; then implement the function of deleting comments through the "preg_replace" function; finally execute this in the browser Just file.

How to delete comments in php

PHP Remove comments in the code

The test file code is as follows:

<?php
 
/**
 * Created by PhpStorm.
 * User: Yang
 * Date: 2019/10/16
 * Time: 10:25
 */
 
// 计算和
// 计算和
// 计算和
$a = 1;
$b = 2;
$c = $a+$b; //总和
 
/*
 * 求和函数
 */
function sum($a, $b) {
 
    return $a + $b; //返回值
}
 
#  第二种注释
$a = 1;
$b = 2;
## 求乘积
$c = $a * $b; #     结果
 
//特殊
$usedFuncs = "abcd";
preg_split("//is", implode("", $usedFuncs), -1, PREG_SPLIT_NO_EMPTY);

The code to remove the comments is as follows:

/**
 * Created by PhpStorm.
 * User: 25754
 * Date: 2019/10/17
 * Time: 9:54
 */
 
function removeComment($content)
{
    return preg_replace("/(\/\*(\s|.)*?\*\/)|(\/\/.(\s|.*))|(#(\s*)?(.*))/", &#39;&#39;, str_replace(array("\r\n", "\r"), "\n", $content));
}
 
$content = file_get_contents("./test.php");
echo removeComment($content);

The result code is as follows:

$a = 1;
$b = 2;
$c = $a+$b;
 
function sum($a, $b) {
 
    return $a + $b; }
 
 
$a = 1;
$b = 2;
 
$c = $a * $b;
 
$usedFuncs = "abcd";
preg_split("

For a lot of related knowledge, please visit PHP Chinese website!

The above is the detailed content of How to delete comments in php. 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