zend 框架中数据库交互的输入清理
在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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
假设这是使用标准的
Zend_Db_Table->fetchAll
,那么只要您使用安全方法来创建参数,您就确实可以免受 SQL 注入的影响,例如:
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:and not