PHP method to implement regular deletion of width and height styles in HTML code

墨辰丷
Release: 2023-03-27 09:34:02
Original
957 people have browsed it

This article mainly introduces the method of PHP regular deletion of width and height styles in HTML code, involving PHP regular matching, replacement and other operation skills for HTML code. Friends who need it can refer to it

Due to work needs , need 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:

Copy after login

Demonstration:

 

HTML; echo ''; echo '原内容:'.PHP_EOL; echo $html.PHP_EOL.PHP_EOL; echo '过滤后内容:'.PHP_EOL; echo clear_wh($html); echo ''; ?>
Copy after login

Output :

原内容: 

过滤后内容:

Copy after login

Related recommendations:

Use PHPregular Delete the width and height styles

##php

Regular method to delete theimg tag in theHTML code

php Description of how to useregularity to delete width and height styles inHTML code

The above is the detailed content of PHP method to implement regular deletion of width and height styles in HTML code. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!