dsrbb20862 2013-02-18 00:50
浏览 92
已采纳

php preg_match找到<img>标签,但没有gif扩展名

I know how to find an img tag within a string but I need to exclude any img tag with gif extension in it. How do I use the negative in my preg_match? I only need the first image tag which does not contain .gif extension.

I currently have this:

  $text = html_entity_decode($text, ENT_QUOTES, 'UTF-8');
  $pattern = "/<img[^>]+\>/i";
  preg_match($pattern, $text, $matches);
  $text = $matches[0];

$text will give me the first tag, for e.g. <img src="something.gif" border="0" /> However, I do not want to accept .gif, so if the first is a gif, it will skip it and continue searching for other .

Please advise me how to change my code to it.

Thanks a bunch!

  • 写回答

3条回答 默认 最新

  • draxq02664 2013-02-18 00:58
    关注

    Don't do it that way. Attempting to parse HTML with regex is a task doomed to failure, since a slight increase in the complexity of the HTML or the requirement will make your regex unbelievably complicated.

    The best way is to use a tool designed for the task: the DOMDocument class.

    $dom = new DOMDocument;
    $dom->loadHTML($text);
    
    $images = $dom->getElementsByTagName('img');
    foreach ($images as $image) {
        if (!substr($image->getAttribute('src'), -4) === '.gif') {
            break;
        }
    }
    
    // $image is now the first image that didn't end with .gif
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部