欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

php删除img标签的方法

程序员文章站 2022-03-14 23:24:47
...

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标签的方法的详细内容,更多请关注其它相关文章!

相关标签: img标签 php