php删除img标签的方法

2020-10-13,

php删除img标签的实现方法:首先创建一个PHP示例文件;然后使用“preg_replace("/>]+\>/i", "(image) ", $content);”方法删除img标签即可。

/2020/10/aa562c56.jpg

推荐:《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中文网】,希望能给您带来帮助,苟日新、日日新、又日新,生命不息,学习不止。

《php删除img标签的方法.doc》

下载本文的Word格式文档,以方便收藏与打印。