Php html_entity_decode example tutorial

Source: Internet
Author: User

Html_entity_decode is used with htmlspecialchars htmlentities in most cases.

Html_entity_decode usage:
String html_entity_decode (string $ string [, int $ quote_style = ENT_COMPAT [, string $ charset])

The html_entity_decode () function converts HTML objects into characters.

Html_entity_decode () is the inverse function of htmlentities () and html_entity_decode () is the inverse function of htmlspecialchars.

 

$ Str = "A 'quote' is <B> bold www.111cn.net </B> ";

Outputs: A 'quote' is & lt; B & gt; bold & lt;/B & gt;
$ S = htmlspecialchars ($ str );

Echo $ s;

Outputs: A & #039; quote & #039; is & lt; B & gt; boldwww.111cn.net & lt;/B & gt;

Echo html_entity_decode ($ s );

A 'quote' is bold

Let's look at another instance.

<? Php
$ Str = "John & amp; & #039; Adams & #039 ;";
Echo html_entity_decode ($ str );
Echo "<br/> ";
Echo html_entity_decode ($ str, ENT_QUOTES );
Echo "<br/> ";
Echo html_entity_decode ($ str, ENT_NOQUOTES );
?> Browser output:

John & 'Adams'
John & 'Adams'
John & 'Adams' if you view the source code in a browser, you will see the following HTML:

<Html>
<Body>
John & #039; Adams & #039; <br/>
John & 'Adams' <br/>
John & #039; Adams & #039;
</Body>
</Html>

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.