gpt4 book ai didi

mysql - sql查询具有特殊字符的列

转载 作者:行者123 更新时间:2023-11-29 05:25:36 27 4
gpt4 key购买 nike

我的查询是这样的

$insert_query = "insert into post (post_title) values ('$post_title')";

如果我的 post_title = Ronald 的个人资料,我将无法插入元组,因为我的 post_title 中有特殊字符 '。

应该如何解决这个问题?提前致谢!

最佳答案

使用准备好的语句在您的查询中自动转义参数

$stmt = $dbh->prepare("insert into post (post_title) values (?)";
$stmt->bindParam(1, $post_title);
$stmt->execute();

关于mysql - sql查询具有特殊字符的列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20744798/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com