(PHP 4 >= 4.3.0, PHP 5)
mysql_real_escape_string — 转锟斤拷 SQL 锟斤拷锟斤拷锟绞癸拷玫锟斤拷址锟斤拷锟斤拷械锟斤拷锟斤拷锟斤拷址锟斤拷锟斤拷锟斤拷锟斤拷堑锟斤拷锟斤拷拥牡锟角帮拷址锟斤拷锟�
锟斤拷锟斤拷展锟斤拷 PHP 5.5.0 锟斤拷锟窖凤拷锟斤拷锟斤拷锟斤拷锟斤拷锟斤拷 PHP 7.0.0 锟斤拷始锟斤拷锟狡筹拷锟斤拷应使锟斤拷 MySQLi 锟斤拷 PDO_MySQL 锟斤拷展锟斤拷锟芥换之锟斤拷锟轿硷拷 MySQL锟斤拷选锟斤拷 API 指锟斤拷锟皆硷拷锟斤拷锟� FAQ 锟斤拷锟斤拷取锟斤拷锟斤拷锟斤拷息锟斤拷锟斤拷锟斤拷锟斤拷锟斤拷锟斤拷锟斤拷锟斤拷锟斤拷校锟�
$unescaped_string
[, resource $link_identifier
= NULL
] ) : string
锟斤拷锟斤拷锟斤拷锟斤拷
unescaped_string
锟叫碉拷锟斤拷锟斤拷锟街凤拷转锟藉,锟斤拷锟狡硷拷锟斤拷锟接的碉拷前锟街凤拷锟斤拷锟斤拷锟斤拷丝锟斤拷园锟饺拷锟斤拷锟�
mysql_query()锟斤拷
mysql_real_escape_string() 锟斤拷锟斤拷mysql锟斤拷暮锟斤拷锟� mysql_real_escape_string, 锟斤拷锟斤拷锟斤拷锟街凤拷前锟斤拷臃锟叫憋拷锟�: \x00, \n, \r, \, ', " 锟斤拷 \x1a.
为锟剿帮拷全锟斤拷锟斤拷锟斤拷锟斤拷锟組ySQL锟斤拷锟酵诧拷询前锟斤拷锟斤拷锟斤拷锟斤拷锟斤拷锟斤拷锟斤拷锟斤拷锟斤拷锟斤拷锟斤拷锟斤拷锟斤拷锟斤拷锟斤拷锟斤拷锟斤拷锟斤拷锟�
The character set must be set either at the server level, or with the API function mysql_set_charset() for it to affect mysql_real_escape_string(). See the concepts section on character sets for more information.
unescaped_string
The string that is to be escaped.
link_identifier
MySQL
锟斤拷锟接★拷锟界不指锟斤拷锟斤拷锟接憋拷识锟斤拷锟斤拷使锟斤拷锟斤拷 mysql_connect()
锟斤拷锟斤拷蚩锟斤拷锟斤拷印锟斤拷锟斤拷没锟斤拷锟揭碉拷锟斤拷锟斤拷锟接o拷锟结尝锟皆诧拷锟斤拷锟斤拷锟斤拷锟斤拷锟斤拷
mysql_connect()
锟斤拷锟斤拷锟斤拷锟斤拷锟斤拷没锟斤拷锟揭碉拷锟斤拷锟接伙拷锟睫凤拷锟斤拷锟斤拷锟斤拷锟接o拷锟斤拷锟斤拷锟斤拷锟�
E_WARNING
锟斤拷锟斤拷拇锟斤拷锟�
Returns the escaped string, or FALSE
on error.
Executing this function without a MySQL connection present will
also emit E_WARNING
level PHP errors. Only
execute this function with a valid MySQL connection present.
Example #1 mysql_real_escape_string() 锟斤拷锟斤拷
<?php
// Connect
$link = mysql_connect('mysql_host', 'mysql_user', 'mysql_password')
OR die(mysql_error());
// Query
$query = sprintf("SELECT * FROM users WHERE user='%s' AND password='%s'",
mysql_real_escape_string($user),
mysql_real_escape_string($password));
?>
Example #2 mysql_real_escape_string() requires a connection example
This example demonstrates what happens if a MySQL connection is not present when calling this function.
<?php
// We have not connected to MySQL
$lastname = "O'Reilly";
$_lastname = mysql_real_escape_string($lastname);
$query = "SELECT * FROM actors WHERE last_name = '$_lastname'";
var_dump($_lastname);
var_dump($query);
?>
锟斤拷锟斤拷锟斤拷锟教碉拷锟斤拷锟斤拷锟斤拷锟斤拷冢锟�
Warning: mysql_real_escape_string(): No such file or directory in /this/test/script.php on line 5 Warning: mysql_real_escape_string(): A link to the server could not be established in /this/test/script.php on line 5 bool(false) string(41) "SELECT * FROM actors WHERE last_name = ''"
Example #3 An example SQL Injection Attack
<?php
// We didn't check $_POST['password'], it could be anything the user wanted! For example:
$_POST['username'] = 'aidan';
$_POST['password'] = "' OR ''='";
// Query database to check if there are any matching users
$query = "SELECT * FROM users WHERE user='{$_POST['username']}' AND password='{$_POST['password']}'";
mysql_query($query);
// This means the query sent to MySQL would be:
echo $query;
?>
The query sent to MySQL:
SELECT * FROM users WHERE user='aidan' AND password='' OR ''=''
This would allow anyone to log in without a valid password.
Note:
A MySQL connection is required before using mysql_real_escape_string() otherwise an error of level
E_WARNING
is generated, andFALSE
is returned. Iflink_identifier
isn't defined, the last MySQL connection is used.
Note:
If magic_quotes_gpc is enabled, first apply stripslashes() to the data. Using this function on data which has already been escaped will escape the data twice.
Note:
If this function is not used to escape data, the query is vulnerable to SQL Injection Attacks.
Note: mysql_real_escape_string() does not escape % and _. These are wildcards in MySQL if combined with LIKE, GRANT, or REVOKE.