php正則方法刪除a標籤的方法:使用函數【preg_replace】保留,程式碼為【$str = htmlspecialchars_decode($str);$str = preg_replace("/]*>(.*?)<\ a="">/is",】。
php正則方法刪除a標籤的方法:
目的:
使用正規表示式刪除下列內容中的a標籤,同時保留a標籤內容
歡迎來到TW511.COMwww.php.cn
修改後:
歡迎來到TW511.COMwww.php.cn
解決方法:
$str = " 歡迎來到TW511.COMwww.php.cn "; $str = htmlspecialchars_decode($str); $str = preg_replace("/]*>(.*?)<\/a>/is", "$1", $str); echo $str; 執行結果為: 1
想了解更多程式設計學習,敬請關注欄目!
以上就是php如何正則方法刪除a標籤的詳細內容,更多請關注TW511.COM其它相關文章!