]+\>/i", "(image) ", $content);」方法刪除img標籤即可。"/> ]+\>/i", "(image) ", $content);」方法刪除img標籤即可。">

首頁  >  文章  >  後端開發  >  php刪除img標籤的方法

php刪除img標籤的方法

藏色散人
藏色散人原創
2020-08-13 10:13:302695瀏覽

php刪除img標籤的實作方法:先建立PHP範例檔案;然後使用“preg_replace("/php刪除img標籤的方法] \>/i", "(image) ", $content);”方法刪除img標籤即可。 [^>

php刪除img標籤的方法

推薦:《PHP影片教學

#程式碼範例:

<?
    $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中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn