PRIG_REPLACE FOR/*.*/

2022-03-23 00:00:00 php preg-replace

我正在尝试为我的自定义模板系统创建OUTCOMMENT PRIG_REPLACE函数。

我尝试了以下方法:

// Outcomment
$pattern[] = "//*(.*?)/*/is";
$replace[] = "";

$content = preg_replace($pattern, $replace, $content);

但我不确定我是否完全理解preg_place的工作方式。

我正在尝试这样做,以便将删除/**/之间的所有内容。


解决方案

尝试此操作:

$str = "Hello my name /* some comment */ is PHP /* and this comment*/ " ;       
$clean = preg_replace("//*(.*?)*//", "", $str) ;

echo $clean ; //Outputs Hello my name is PHP

相关文章