zend 框架中数据库交互的输入清理

发布于 2024-12-02 11:51:42 字数 142 浏览 0 评论 0原文

在zend框架中这样的命令

$mapperObject->fetchAll($where, $order, $count, $offset);

是否需要小心变量包含的内容,否则ZF会照顾用于sql注入等等?

In commands like this in zend framework

$mapperObject->fetchAll($where, $order, $count, $offset);

Does one need to be careful about what the variables contain or ZF will take care of it for sql injection and all that?

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

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

发布评论

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

评论(1

煮酒 2024-12-09 11:51:42

假设这是使用标准的 Zend_Db_Table->fetchAll,那么只要您使用安全方法来创建参数,您就确实可以免受 SQL 注入的影响,例如

 $where = $select->where('id = ?', $id);
 // or ..
 $where = $select->where('id = :id');

 $where = $select->where('id = $id');

Assuming this is using the standard Zend_Db_Table->fetchAll, then you are indeed protected from SQL injection as long as you use the secure methods for creating your parameters eg:

 $where = $select->where('id = ?', $id);
 // or ..
 $where = $select->where('id = :id');

and not

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