当我在下面的第二个内容片段上运行此脚本时,它会通过(我得到“内部回调”回声)。
然而,当我在第一个内容片段上运行它时,即使我认为我得到了第一个回声,我也从未在p_callback()中得到回声。
我猜测内容中有一些内容会使preg_replace_callback瘫痪。你会建议什么导致问题?
function ad_insert($content){
if(substr_count(strtolower($content), '</p>') < get_option('ad_insert') )
{
return $content .= '<p class="endContent">' . get_ads($ad_insert=1) . '</p>';
}
else
{
echo "inside else";
$replaced_content = preg_replace_callback('#(<p>.*?</p>)#', 'p_callback', $content);
}
return $replaced_content;
}
function p_callback($matches)
{
echo "inside callback";die;
static $count = 0;
$ret = $matches[1];
$pCount = get_option('cb2_ad_insert');
if (++$count == $pCount){
$ret .= '<p class="insertContent">' . ce4_get_ads($ad_insert=1) . '</p>';
}
return $ret;
}
第一个内容片段失败:
<div style="margin: 10px 0;">
<a href="test.jpg" target="_blank" rel="nofollow">
<img style="float: left; margin: 10px; max-width: 25%;" title="test" src="test.jpg" alt="test" />
</a>
<p style="float: left; width: 70%;">
<a href="test" target="_blank" rel="nofollow">
<img title="PDF file" src="test.png" alt="PDF file" />
<span style="font-weight: bold; text-transform: capitalize;">Test ...</span>
</a>
<span>test <strong>test</strong> test? test, test, i.e., </span>
<a href="test.pdf" target="_blank" rel="nofollow"> ... Get Content Here</a>
</p>
</div>
第二个内容片段通过:
<div style="margin: 10px 0;">
<p>first paragraph</p>
<p>second paragraph</p>
</div>
答案 0 :(得分:1)
您的第一个片段不包含<p>...</p>
您的段落标记包含属性。
答案 1 :(得分:0)
使用s
(PCRE_DOTALL)修饰符:
$replaced_content = preg_replace_callback('#(<p.*?</p>)#s', 'p_callback', $content);
____^