我有一個這樣的字符串:替換了preg_replace(PHP)兩個標記之間的內容
(link)there is link1(/link), (link)there is link2(/link)
現在我想設置,它看起來像這樣的鏈接:
<a href='there is link1'>there is link1</a>, <a href='there is link2'>there is link2</a>
我用preg_replace嘗試過,但結果是錯誤(Unknown modifier 'l'
)
preg_replace("/\(link\).*?\(/link\)/U", "<a href='$1'>$1</a>", $return);
你需要躲避斜槓(ES) –
但我逃過了斜線以 「\」 或? – Name
什麼是標題! –