准备好的语句是否消除了 PHP 中对 mysql_real_escape_string() 的需要?

Linda Hamilton
发布: 2024-11-04 11:34:01
原创
532 人浏览过

Do Prepared Statements Eliminate the Need for `mysql_real_escape_string()` in PHP?

准备语句和转义:一种平衡行为

在 PHP 中使用准备语句时,是否还需要使用 mysql_real_escape_string() 来防止SQL注入?让我们检查一个特定的查询及其实现来回答这个问题。

查询和实现

<code class="php">$consulta = $_REQUEST["term"] . "%";

$sql = $db->prepare('select location from location_job where location like ?');

$sql->bind_param('s', $consulta);
$sql->execute();
$sql->bind_result($location);

$data = array();

while ($sql->fetch()) {
    $data[] = array('label' => $location);
}
?>

**The Dilemma**

The provided query aims to fetch locations that match the term entered in the $_REQUEST["term"] variable. While the usage of a prepared statement is commendable for preventing SQL injections, the implementation raises a query: is mysql_real_escape_string() still necessary in this case?

**The Verdict: No, but a Refinement is Suggested**

When using prepared statements, as long as they are employed correctly, they effectively shield against SQL injections. In this instance, mysql_real_escape_string() is redundant. However, a minor improvement can enhance the code's clarity and efficiency.

Rather than using bind_param('s', $consulta), it's more straightforward to pass parameters through the execute method, especially when utilizing the '?' placeholder. The updated code would be:
</code>
登录后复制

$sql->execute([$consulta]);

为什么重要

带有参数绑定的准备好的语句确保外部数据无法操作 SQL 查询。但是,请记住,仅 SQL 参数绑定并不能保证 HTML 中的安全显示。为此,在输出查询结果之前使用 htmlspecialchars() 等函数至关重要。

以上是准备好的语句是否消除了 PHP 中对 mysql_real_escape_string() 的需要?的详细内容。更多信息请关注PHP中文网其他相关文章!

来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
作者最新文章
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责声明 Sitemap
PHP中文网:公益在线PHP培训,帮助PHP学习者快速成长!