Php special character filtering

Source: Internet
Author: User
: This article mainly introduces php special character filtering. For more information about PHP tutorials, see.
1. the htmlspecialchars () function converts some predefined characters to the HTML entity function prototype: htmlspecialchars (string, quotestyle, character-set). the predefined characters are: & (and) become & "(double quotation marks) to" '(single quotation marks) to become' <(less than) to become <> (greater than) to become>

 Bold text. "; echo htmlspecialchars ($ str);?> The HTML output of the above code is as follows (view the source code): This is someBoldText. the browser output of the above code: This is someBoldText.2. htmlspecialchars_decode () function converts some predefined HTML entities into characters (opposite to htmlspecialchars). function prototype: htmlspecialchars_decode (string, quotestyle)

 Bold text. "; echo htmlspecialchars_decode ($ str);?> The HTML output of the above code is as follows (view the source code): This is someBoldText. the browser output of the above code: This is some bold text.

The above introduces php special character filtering, including some content, and hope to be helpful to friends who are interested in PHP tutorials.

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.