Home > Article > Backend Development > Detailed explanation of deleting width and height styles in HTML with PHP
This article mainly introduces the method of PHP regular deletion of width and height styles in HTML code, involving PHP's regular matching, replacement and other operation skills for HTML code. Friends in need can refer to the following
Examples of this article This is a regular PHP method to delete width and height styles in HTML code. Share it with everyone for your reference, the details are as follows:
Due to work needs, it is necessary to collect html and save the html content into the database. In order to avoid affecting usage, the width and height styles need to be deleted. For example, width, height, etc. in pictures and p.
However, in the collected HTML, the styles are written in different ways, such as upper and lower case, spaces in the middle, etc.
So I wrote the following method using PHP regular to filter these weird styles.
The code is as follows:
<?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; } ?>
Demo:
##
<?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>'; ?>Output:
原内容: <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>
The above is the detailed content of Detailed explanation of deleting width and height styles in HTML with PHP. For more information, please follow other related articles on the PHP Chinese website!