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 differently, 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:
Demo:
HTML;echo '
';echo '原内容:'.PHP_EOL;echo $html.PHP_EOL.PHP_EOL;echo '过滤后内容:'.PHP_EOL;echo clear_wh($html);echo ' '; ?>
Output:
原内容:
过滤后内容:
This article explains how to use regular rules to remove width and height styles in PHP. For more related content, please pay attention to the PHP Chinese website.
Related recommendations:
Detailed explanation of file content deduplication and sorting
Interpretation of mysql case-sensitive configuration issues
How to use php to merge arrays and retain key values
The above is the detailed content of About how to remove width and height styles in PHP using regular expressions. For more information, please follow other related articles on the PHP Chinese website!