doutang2382 2013-04-18 09:31
浏览 71
已采纳

PHP Regex在WP Caption中获取img

I want to get the img tag inside the caption tag

Example:

[caption id="attachment_5433" align="aligncenter" width="413"]
    <a href="abc.jpg"><img class=" wp-image-5433" title="This is a title" src="abc.jpg" alt="This is alt" width="413" height="551"></a>This is a desc
[/caption]

and the result:

<img class=" wp-image-5433" title="This is a title" src="abc.jpg" alt="This is alt" width="413" height="551">

How to do it by PHP regex?

  • 写回答

2条回答 默认 最新

  • dongzhong8834 2013-04-18 09:49
    关注
    <?php
        $string = '[caption id="attachment_5433" align="aligncenter" width="413"]
        <a href="abc.jpg"><img class=" wp-image-5433" title="This is a title" src="abc.jpg" alt="This is alt" width="413" height="551"></a>This is a desc
    [/caption]';
    
        $result = preg_match_all("/\[caption.*?].*?(<img.*?\/?>).*?\[\/caption]/s", $string, $matches);
    
        print_r($matches);
    ?>
    

    Ouput

    Array
    (
        [0] : Array
            (
                [0] : '[caption id="attachment_5433" align="aligncenter" width="413"]
        <a href="abc.jpg"><img class=" wp-image-5433" title="This is a title" src="abc.jpg" alt="This is alt" width="413" height="551"></a>This is a desc
    [/caption]'
            )
    
        [1] : Array
            (
                [0] : '<img class=" wp-image-5433" title="This is a title" src="abc.jpg" alt="This is alt" width="413" height="551">'
            )
    
    )
    

    Update, with replace callback

    <?php
        $string = '[caption id="attachment_5433" align="aligncenter" width="413"]
        <a href="abc.jpg"><img class=" wp-image-5433" title="This is a title" src="abc.jpg" alt="This is alt" width="413" height="551"></a>This is a desc
    [/caption]';
    
        echo preg_replace_callback('/\[caption.*?].*?(<img.*?\/?>).*?\[\/caption]/s', function($matches) {
            return $matches[1];
        }, $string);
    ?>
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 帮我写一个c++工程
  • ¥30 Eclipse官网打不开,官网首页进不去,显示无法访问此页面,求解决方法
  • ¥15 关于smbclient 库的使用
  • ¥15 微信小程序协议怎么写
  • ¥15 c语言怎么用printf(“\b \b”)与getch()实现黑框里写入与删除?
  • ¥20 怎么用dlib库的算法识别小麦病虫害
  • ¥15 华为ensp模拟器中S5700交换机在配置过程中老是反复重启
  • ¥15 java写代码遇到问题,求帮助
  • ¥15 uniapp uview http 如何实现统一的请求异常信息提示?
  • ¥15 有了解d3和topogram.js库的吗?有偿请教