循环访问具有不同值的缓冲区内容

时间:2018-06-21 10:50:47

标签: php wordpress plugins buffer bufferedreader

需要帮助,

我正在使用插件和匹配的iframe代码获取缓冲区数据。

获取缓冲区值后,我将检索iframe src并将其替换为空白src。

当我循环src值并输出并使用preg_replace时,它不会根据循环替换值,而不会替换为第一个iframe值...

这是我的代码

add_action('wp_footer', 'scheck_iframe_value');

function scheck_iframe_value() {

    $get_me_buffers = ob_get_clean();       
    $pattern = '@(.*)(<iframe(?:.*?)</iframe>)(.*)@m';
    ob_start();

    /* if (preg_match($pattern, $get_me_buffers, $get_me_buffers_return)) {  */
    if (preg_match_all($pattern, $get_me_buffers, $get_me_buffers_return, PREG_PATTERN_ORDER)) {            
        $d_new_body_plus = $get_me_buffers_return[0];
        $html = '';
        $sizeofarray = count($d_new_body_plus);         
        for ($i = 0; $i < count($d_new_body_plus); $i++) {
            preg_match('/src="([^"]+)"/', $d_new_body_plus[$i], $match);

            $src = $match[1];
            $content = str_replace($src, '', $d_new_body_plus[$i]);
            $html .= '<div class="wpretarget-iframe-block" style="background-color: lightgray;text-align: center;">'
                    . '<button style="margin: 5px;background-color: blue;color: white;" type="button" class="wpretarget-iframe-content-button-click" data-url=' . $src . ' data-type="iframe">Click to load content of Vimeo</button>'
                    . '<span style="display:none;">' . $content . '</span>'
                    . '</div>';
            $d_new_body_plus = $html;
        }
        echo preg_replace($pattern, $d_new_body_plus, $get_me_buffers);
    } else {
        echo $get_me_buffers;
    }
    ob_flush();
}

Screen Shot 1

Screen Shot 2

1 个答案:

答案 0 :(得分:2)

我使用preg_replace_callback函数解决了此问题。代码为

function test_iframe_checker() {   
    $get_me_buffers = ob_get_clean();    
    $pattern = '@(.*)(<iframe(?:.*?)</iframe>)(.*)@m';
    ob_start();           
    if (preg_match_all($pattern, $get_me_buffers, $get_me_buffers_return, PREG_PATTERN_ORDER)) {             
        echo $source = preg_replace_callback($pattern, function($matches){
             preg_match('/src="([^"]+)"/', $matches[0], $match);
             $src = $match[1];
             $contents = str_replace($src, '', $matches[0]);
            return $html ='<div class="test-iframe-block" style="background-color: lightgray;text-align: center;">'
                    . '<button style="margin: 5px;background-color: blue;color: white;" type="button" class="test-iframe-content-button-click" data-url=' . $src . ' data-type="iframe">Click to load content Third Party Control</button>'
                    . '<span style="display:none;">' . $contents . '</span>'
                    . '</div>';
         }, $get_me_buffers);
    } else {
        echo $get_me_buffers;
    }
    ob_flush();
}