PHP 如何数据库转义?
1、PHP7之前可以使用函数“mysql_escape_string()”将数据进行转义;
mysql_escape_string ( string $unescaped_string ) : string
2、PHP7之后可以通过使用“mysqli_real_escape_string()”函数转义数据。
mysqli_real_escape_string ( mysqli $link , string $escapestr ) : string
3、使用函数“addslashes()”进行转义
addslashes ( string $str ) : string
function myaddslashes($data) { if(false == get_magic_quotes_gpc()) { return addslashes($data);//未启用魔术引用时,转义特殊字符 } return $data; }
推荐教程:《PHP》
更多关于云服务器,域名注册,虚拟主机的问题,请访问西部数码官网:www.west.cn