PHP anti-injection escape function

Source: Internet
Author: User

PHP addslashes () function
$str addslashes (' Shanghai is the ' biggest ' ); Echo ($str);
The result is
Shanghai is the ' biggest\ City ' in China.

MySQL's mysql_real_escape_string () function definition and usage

The mysql_real_escape_string () function escapes special characters in strings used in SQL statements.

The following characters are affected:

    • \x00
    • \ n
    • \ r
    • \
    • "
    • \x1a

If successful, the function returns the escaped string. If it fails, it returns false.

Grammar
Mysql_real_escape_string (string,connection)
Parameters Description
String Necessary. Specifies the string to be escaped.
Connection Optional. Specify MySQL connection. If not specified, the previous connection is used.
Description

This function escapes the special characters in the string and takes into account the current character set of the connection, so it can be used safely for mysql_query ().

Can be defined as a method

function escapestring ($data)
{
Return mysql_real_escape_string ($data, $this->RESOURC);
}

Call this function later to

PHP anti-injection escape function

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.