时间:2021-07-01 10:21:17 帮助过:5人阅读
不过采集到的html中,样式的写法各有不同,例如大小写,中间有空格等。
因此使用php正则编写了下面这个方法,对这些奇葩的样式进行过滤。
代码如下:
<?php/** * 清除宽高样式 * @param String $content 内容 * @return String */function clear_wh($content){ $config = array('width', 'height'); foreach($config as $v){ $content = preg_replace('/'.$v.'\s*=\s*\d+\s*/i', '', $content); $content = preg_replace('/'.$v.'\s*=\s*.+?["\']/i', '', $content); $content = preg_replace('/'.$v.'\s*:\s*\d+\s*px\s*;?/i', '', $content); } return $content; }?>
演示:
<?php$html = <<<HTML <p style="text-align:center" width="500" height="300"> <p style="Width : 100px ; Height: 100 px;"> <img src="/images/test.jpg" width=400 height = 200> <p style="float:left; width: 100px; height : 200 px;"></p> </p> <p style="width : 100 px ;height: 100px"> <img src="/images/test.jpg" width=400 height = 200> </p> </p> HTML;echo '<xmp>';echo '原内容:'.PHP_EOL;echo $html.PHP_EOL.PHP_EOL;echo '过滤后内容:'.PHP_EOL;echo clear_wh($html);echo '</xmp>'; ?>
输出:
原内容:<p style="text-align:center" width="500" height="300"> <p style="Width : 100px ; Height: 100 px;"> <img src="/images/test.jpg" width=400 height = 200> <p style="float:left; width: 100px; height : 200 px;"></p> </p> <p style="width : 100 px ;height: 100px"> <img src="/images/test.jpg" width=400 height = 200> </p></p>过滤后内容:<p style="text-align:center" > <p style=" "> <img src="/images/test.jpg" > <p style="float:left; "></p> </p> <p style=""> <img src="/images/test.jpg" > </p></p>
本文讲解了php使用正则去除宽高样式,更多相关内容请关注Gxl网。
相关推荐:
mysql表数据行列转换方法
nginx快速查看配置文件的方法
php 多个一维数组合拼成二维数组的方法
以上就是php使用正则去除宽高样式的详细内容,更多请关注Gxl网其它相关文章!