我要替換字符串用相同的哈希標籤哈希標籤,但添加鏈接到它後更換正則表達式使用PHP與正則表達式
例子:
$text = "any word here related to #English must #be replaced."
我想
來代替每個主題標籤#English ---> <a href="bla bla">#English</a>
#be ---> <a href="bla bla">#be</a>
所以outpu應該是這樣的:
$text = "any word here related to <a href="bla bla">#English</a> must <a href="bla bla">#be</a> replaced."
感謝
看一看preg_replace函數的PHP文檔,以及如何使用反向引用的工作:http://be2.php.net/preg_replace – jan
@jan你需要比這更多,如果你想防止XSS :) –
@Jack,問題是關於用正則表達式替換字符串。我沒有按照你的參考xss – jan