我試圖做一個函數刪除所有支架代碼,但它似乎並不奏效,PHP:正則表達式去除支架代碼
function anti_code($content)
{
# find the matches and then remove them
$output = preg_replace("/\[a-z\s+\]/is", "", $content);
# return the result
return $output;
}
我想在要刪除這些代碼輸出,
Agro[space]terrorism
Agro[en space]terrorism
,這樣我可以得到
Agroterrorism
我一定是壞了我的正則表達式!請告訴我。謝謝。
作爲一邊,從來沒有使用雙引號的字符串,其中單引號的字符串,尤其是在正則表達式模式 – Walf 2011-01-21 13:35:19