Php removes html tags -- differences between strip_tags and htmlspecialchars _ PHP Tutorial-php Tutorial

Source: Internet
Author: User
Php removes the html tag -- the difference between strip_tags and htmlspecialchars. Strip_tags removes HTML and PHP tags. Syntax: stringstrip_tags (stringstr); return value: string function type: data processing content description this function can remove any Strip_tags
Remove HTML and PHP tags.
Syntax: string strip_tags (string str );
Return value: string
Correspondence type: data processing
Description
This function removes any HTML and PHP tag strings contained in the string. If the HTML and PHP tags of a string are incorrect, for example, if a greater symbol is missing, an error is returned. This function has the same function as fgetss.

Htmlspecialchars
Convert special characters to HTML format.
Syntax: string htmlspecialchars (string );
Return value: string
Correspondence type: data processing
This function converts special characters into the string format of HTML (&....;). The most common use case may be the message board for handling customer messages.
& (And) &
"(Double quotation marks)"
<(Less than) to <
> (Greater than) to>
''(Single quotes)'
This function only converts the preceding special characters and does not convert all the characters to the ASCII conversion specified in HTML.

The code is as follows:


$ New = htmlspecialchars ("Test", ENT_QUOTES );
Echo $ new;
?>


Result: Test

Http://www.bkjia.com/PHPjc/327899.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/327899.htmlTechArticlestrip_tags removes the HTML and PHP markup. Syntax: string strip_tags (string str); return value: string correspondence type: data processing content description this function can remove any string containing...

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.