我有一些html字符串,我想用preg_replace
替换
<table border="0" cellpadding="0" cellspacing="0">
...和...
</table>
有什么想法吗?
"/<table border=\b[^>]*>(.*?)<\/table>/ims"
对我不起作用:(
答案 0 :(得分:0)
答案 1 :(得分:0)
需要稍加纠正:
$html = preg_replace("'([<]table border=[^>]*[>]).*?([<]/table[>])'ims", "\\1".$your_stuff."\\2", $html);
注意:我曾经将<
和>
字符放在方括号中,只是一种习惯。