Filter all HTML tag properties in PHP

Source: Internet
Author: User
Keywords Web Programming PHP Tutorials
Tags expression html php programming web

1, filter the regular expression of all HTML tags:

</? [^>]+>

2, a regular expression that filters the properties of all HTML tags:

$html = Preg_replace ("/<" ([a-za-z]+) [^>]*>/"," <\1> ", $html);

3, filter some of the HTML tags of the regular expression of the exclusion (such as excluding <p>, that is, do not filter <p>):

</? [^pp/>]+>

4, filter some of the HTML tags of the regular expression of the enumeration (such as the need to filter <a><p><b>):

</? [AAPPBB] [^>]*>

5, filter the exclusion of regular expressions for the properties of some HTML tags (such as excluding the ALT attribute, which does not filter the ALT attribute):

S (?!) ALT) [a-za-z]+=[^s]*

6, the enumeration of regular expressions that filters the properties of some HTML tags (for example, the ALT attribute):

(s) alt=[^s]*

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.