/is',"< a href='###'>",$file);」替換a標籤即可。"/> /is',"< a href='###'>",$file);」替換a標籤即可。">
php正規取代a標籤的實作方法:先建立一個PHP範例檔案;然後透過正規表示式「preg_replace('/6a5ba929a32fc19e6828cc937d6d37fd/is',"65d6bb909ef2822ca65f9373106b66a9",$file);」替換a標籤即可。
推薦:《PHP影片教學
》php正規符合A標籤href並取代程式碼如下:$file = "<a href="http://www.baidu.com">baidu</a>"; $file = preg_replace('/<a .*?href="(.*?)".*?>/is',"<a href='###'>",$file); //输出结果 <a href="###">baidu</a>###
以上是php 正規如何替換a標籤的詳細內容。更多資訊請關注PHP中文網其他相關文章!