我使用这段代码,一切正常,它隐藏了$comments
包含之间的文本[]
,但我想隐藏其他符号的文本。前任。** && ^^ $$ ## // <>
. 我需要在这里添加什么,而不是
Date <20.02.2013> Time [11-00] Name #John#
拥有这个:
Date Time Name
?
function replaceTags($startPoint, $endPoint, $newText, $source) {
return preg_replace('#('.preg_quote($startPoint).')(.*)('.preg_quote($endPoint).')#si', '$1'.$newText.'$3', $source);
}
$source= $comments;
$startPoint='[';
$endPoint=']';
$newText='';
echo replaceTags($startPoint, $endPoint, $newText, $source);