php删除img标签的方法

  • 来源:网络
  • 更新日期:2020-08-13

摘要:php删除img标签的实现方法:首先创建一个PHP示例文件;然后使用“preg_replace("/]+\\>/i", "(image) ", $content);”方法删除img标签即可。推荐:《PHP视频教程》代码示例:<?

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