PHP - 从字符串中删除<img/>标记

时间:2009-07-10 00:54:46

标签: php string

嘿,我需要删除字符串中的所有图像,但我找不到正确的方法。

这是我尝试过的,但它不起作用:

preg_replace("/<img[^>]+\>/i", "(image) ", $content);
echo $content;

有什么想法吗?

6 个答案:

答案 0 :(得分:138)

尝试将\放在>前面。

编辑:我刚刚测试了你的正则表达式,它运行正常。这是我用过的:

<?
    $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.

答案 1 :(得分:17)

您需要将结果分配回$content,因为preg_replace不会修改原始字符串。

$content = preg_replace("/<img[^>]+\>/i", "(image) ", $content);

答案 2 :(得分:10)

我建议使用strip_tags方法。

答案 3 :(得分:7)

Sean工作正常我刚刚使用了这段代码

$content = preg_replace("/<img[^>]+\>/i", " ", $content); 
echo $content;

//结果它只是纯文本。它有效!!!

答案 4 :(得分:1)

我想将新闻故事的前300个单词显示为预览,遗憾的是,如果一个故事在前300个单词中有一个图像,那么它会显示在预览列表中,这个预览真的与我的布局相混淆。我使用上面的代码隐藏了从我的数据库中取出的字符串中的所有图像,它运行得非常好!

$news = $row_latest_news ['content'];
$news = preg_replace("/<img[^>]+\>/i", "", $news); 
if (strlen($news) > 300){
echo substr($news, 0, strpos($news,' ',300)).'...';
} 
else { 
echo $news; 
}

答案 5 :(得分:-1)

$this->load->helper('security');
$h=mysql_real_escape_string(strip_image_tags($comment));

如果用户输入

<img src="#">

在数据库表中只插入符号#

为我工作