将 PHP 变量插入 MySQL 语句
在 MySQL 语句中包含 PHP 变量时,必须了解规则以确保数据完整性并防止潜在的安全漏洞。
1.对数据文字使用预准备语句
内容: 表示 SQL 数据文字(字符串或数字)的所有 PHP 变量都必须包含在预准备语句中。
原因: 准备好的语句通过防止 SQL 注入来清理和保护数据攻击。
如何:
使用 mysqli 的示例:
$type = 'testing'; $reporter = "John"; $sql = "INSERT INTO contents (type, reporter, description) VALUES ('whatever', ?, ?)"; $stmt = $mysqli->prepare($sql); $stmt->bind_param("ss", $reporter, $description); $stmt->execute();
如何使用 PDO:
$type = 'testing'; $reporter = "John"; $sql = "INSERT INTO contents (type, reporter, description) VALUES ('whatever', ?, ?)"; $stmt = $pdo->prepare($sql); $stmt->execute([$reporter, $description]);
2。查询部分的白名单过滤
内容:表示其他查询部分(关键字、标识符)的变量必须通过允许值的“白名单”进行过滤。
原因:为了防止恶意用户注入未经授权的查询部分或关键字。
如何:
示例:
$orderby = $_GET['orderby'] ?: "name"; $allowed = ["name", "price", "qty"]; $key = array_search($orderby, $allowed, true); if ($key === false) { throw new InvalidArgumentException("Invalid field name"); } $query = "SELECT * FROM `table` ORDER BY `$orderby` $direction";
以上是如何安全地将PHP变量插入MySQL语句以防止SQL注入?的详细内容。更多信息请关注PHP中文网其他相关文章!