用 PDO 替换 mysql_real_escape_string()
在从 mysql_* 函数到 PDO 的转换中,必须了解 PDO 的作用没有与 mysql_real_escape_string() 完全相同的功能。
PDO 不是手动转义字符串,而是依赖准备好的语句来防止 SQL 注入。准备好的语句对稍后插入的值使用占位符 (?),防止恶意字符作为代码执行。
示例:
<code class="php"><?php // Connect to the database $db = new PDO('mysql:host=localhost;dbname=test', 'root', 'password'); // Prepare the statement with placeholder for value $stmt = $db->prepare('SELECT * FROM users WHERE username = ?'); // Bind the value to the placeholder (already sanitized via other means) $stmt->bindParam(1, $username); // Execute the statement without fear of SQL injection $stmt->execute(); // Fetch the results $users = $stmt->fetchAll(PDO::FETCH_ASSOC);</code>
优点使用 PDO 的好处:
注意:虽然 PDO::quote() 可用于转义字符串,但通常不建议使用,因为它不提供相同的级别
通过遵循最佳实践并在 PDO 中使用准备好的语句,开发人员可以有效防止代码中的 SQL 注入漏洞。
以上是如何从 mysql_real_escape_string() 迁移到 PDO 准备语句?的详细内容。更多信息请关注PHP中文网其他相关文章!