如何使用php替换表标记中的某些内容

时间:2012-08-01 04:16:07

标签: php

我有数千个html页面,其中包含下表〜

<table height="94" cellpadding="0" width="760" border="0" cellspacing="0">
..... 
</table>

我想删除此表标记:〜

<table height="94" cellpadding="0" width="760" border="0" cellspacing="0">

及其中的内容。

我试过了:〜

preg_replace("/<(\/?table height="/94/".*?)>/si","",$str);

但失败了,它只删除了我的所有代码及其内容。

提前致谢

1 个答案:

答案 0 :(得分:0)

尝试:

preg_replace('#<table height="94".*?>.*?</table>#si',"",$str);