Example code for php to replace html tags in batches

Source: Internet
Author: User
This article mainly introduces the example code for batch replacement of html tags in php. if you need some help, please refer to it. remove all html elements or retain some html tags.

The code is as follows:


$ Text ='

Test paragraph.

Other text ';
Echo strip_tags ($ text );
Echo "/n ";

// Allow

And
Echo strip_tags ($ text ,'

');
?>


Result ):

Test paragraph. Other text

Test paragraph.

Other text
2. on the contrary, only one html tag is removed.

The code is as follows:


Function strip_only ($ str, $ tags, $ stripContent = false ){
$ Content = '';
If (! Is_array ($ tags )){
$ Tags = (strpos ($ str, '> ')! = False? Explode ('>', str_replace ('<', '', $ tags): array ($ tags ));
If (end ($ tags) = '') array_pop ($ tags );
}
Foreach ($ tags as $ tag ){
If ($ stripContent)
$ Content = '(. + ] *> | )';
$ Str = preg_replace ('# ] *> '. $ Content.' # is ', '', $ str );
}
Return $ str;
}

$ Str = 'red text ';
$ Tags = 'font ';
$ A = strip_only ($ str, $ tags); // red text
$ B = strip_only ($ str, $ tags, true); // text
?>

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.