我正在爲我的自定義模板系統創建一個outcomment preg_replace函數。Preg_replace for/* ... */
我曾嘗試以下:
// Outcomment
$pattern[] = "//*(.*?)/*/is";
$replace[] = "";
$content = preg_replace($pattern, $replace, $content);
但我不知道,我很明白的preg_replace工作的方式。
我正在嘗試去除/*
和*/
之間的所有內容。
你需要躲避分隔符(這裏'/')你的格局裏面還有'*'。 – Gumbo 2013-02-17 11:40:28