【发布时间】:2012-02-15 08:45:44
【问题描述】:
我正在处理一个 xml 文件,有时有 “iframe” 和 “脚本” 在我什至'xml-parse-it'之前我需要离开的标签
我正在尝试一些正则表达式,但我弄错了! :(
测试字符串:
$teststring = 'p><iframe src="http://www.facebook.com/plugins/like.php?href=abcdef&amp;layout=standard&amp;show_faces=false&amp;width=450&amp;action=like&amp;colorscheme=dark&amp;height=35" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:450px; height:35px;" allowtransparency="true"></iframe></p>';
//todo clean this up// found this function on net. //more legacy stufff
$Rules = array(
'@<script[^>]*?>.*?</script>@si', // Strip out javascript
'@&(cent|#162);@i', // Cent
'@&(pound|#163);@i', // Pound
'@&(copy|#169);@i', // Copyright
'@&(reg|#174);@i', // Registered
'@&#(d+);@e', // Evaluate as php
---> PROBLEM--> '@<iframe [^<]<.*?<\/iframe>@i',
);
$Replace = array(
'',
chr( 162 ),
chr( 163 ),
chr( 169 ),
chr( 174 ),
'chr()',
'',
);
//expecting <p></p>
$data = preg_replace( $Rules, $Replace, $teststring);
echo $data;
【问题讨论】: