-1

可能重复:
删除 iframe 但无法删除标签 p 时出错

我有一个示例代码:

$content = '<p><iframe width="640" scrolling="no" height="150" frameborder="1" marginheight="0" marginwidth="0" src="http://test.html"></iframe></p><p>Hello world</p>';
$text = preg_replace('/<p>\s*(<iframe src="http://test.html" .*>*.<\/iframe>)\s*<\/p>/iU', '', $content);
echo $text;

如何修复以删除此 iframe 结果是:<p>Hello world</p>

4

1 回答 1

0
$text = preg_replace('|<iframe [^>]*(src="http://test.html")[^>]*|', '', $content);
于 2012-08-17T03:36:52.253 回答