PHP 中的 .NET SqlParameters

发布于 2024-11-28 18:55:06 字数 172 浏览 2 评论 0原文

PHP 中 .NET 的 Command.SqlParameters.AddWithValue() 的对应部分是什么?我想避免 SQL 注入,我只是想知道除了通过 mysql_real_escape() 转义字符串之外,PHP 是否已经有相同的方法。

提前致谢!

What is the counterpart of Command.SqlParameters.AddWithValue() of .NET in PHP? I want to avoid SQL injection, I just wonder if PHP already has the same method aside from escaping strings thru mysql_real_escape().

Thanks in advance!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

我的鱼塘能养鲲 2024-12-05 18:55:06

PDOprepare() 方法和 PDOStatement::bindParam()PDOStatement::bindValue()

两者之间的区别是 bindParam() 绑定对变量的引用。变量值可以更改,而无需重新绑定参数。这在循环中特别有用。

bindValue() 只是将静态值绑定到参数。

PDO's prepare() method and PDOStatement::bindParam() or PDOStatement::bindValue()

The difference between the two is bindParam() binds a reference to a variable. The variable value can change without having to re-bind the parameter. This is particularly useful in loops.

bindValue() simply binds a static value to a parameter.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文