PHP能用sprintf函数来防止SQL注入吗?
程序员文章站
2022-03-18 22:50:34
...
$sql = sprintf("select count(*) as qty from t_user where f_uid='%s' and f_password='%s'",$password,$userAccount);
这句话能挡住SQL注入吗?
回复讨论(解决方案)
不能,SQL注入的关键在于引号,而sprintf()不会去处理引号。
下一篇: PHP之sprintf函数用法详解