php刪除img標籤的實現方法:首先建立一個PHP範例檔案;然後使用「preg_replace("/]+\>/i", "(image) ", $content);」方法刪除img標籤即可。
推薦:《》
程式碼範例:
<? $content = "this is something with an <img src=\"test.png\"/> in it."; $content = preg_replace("/<img[^>]+\>/i", "(image) ", $content); echo $content; ?>
結果是:
this is something with an (image) in it.
以上就是php刪除img標籤的方法的詳細內容,更多請關注php中文網其它相關文章!