PHP mysql_real_escape_string的使用陷阱

php函数mysql_real_escape_string用于转义字符串中和SQL 有关的特殊字符,防止SQL注入攻击。
参数描述
string必需。规定要转义的字符串。
connection可选。规定 MySQL 连接。如果未规定,则使用上一个连接。

注意:如果没有连接MySQL就是用这个函数那么返回值总是false。

未连接MySQL
PHP代码:
$str = "list%%";
var_dump(mysql_real_escape_string($str));

运行结果:
[root@localhost test]# phptest.php  
PHP Warning:  mysql_real_escape_string(): Accessdenied for user 'root'@'localhost' (using password: NO) in/var/www/html/test/test.php on line 23

Warning: mysql_real_escape_string(): Access denied for user'root'@'localhost' (using password: NO) in/var/www/html/test/test.php on line 23
PHP Warning:  mysql_real_escape_string(): A linkto the server could not be established in/var/www/html/test/test.php on line 23

Warning: mysql_real_escape_string(): A link to the server could notbe established in /var/www/html/test/test.php on line 23
bool(false)

连接MySQL
PHP代码:
mysql_connect('192.168.193.129', 'root', 'miaohr1qaz');

$str = "list%%";
var_dump(mysql_real_escape_string($str));

运行结果:
[root@localhost test]# phptest.php  
string(6) "list%%"
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值