模型上的 $this->escape()
有没有办法可以在模型上或控制器内部使用 $this->escape()
?
Is there a way that I can use $this->escape()
on models or inside the controller?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
$this->escape()
用于视图中,它类似于htmlentities()
、htmlspecialchars
如果您正在寻找引用值并且您应该使用
quote()
、quoteInto()
方法来识别标识符。http://framework .zend.com/manual/en/zend.db.adapter.html#zend.db.adapter.quoting.quote-into
$this->escape()
is used in view, its similar tohtmlentities()
,htmlspecialchars
If you are looking for Quoting Values and Identifiers you should use
quote()
,quoteInto()
methods.http://framework.zend.com/manual/en/zend.db.adapter.html#zend.db.adapter.quoting.quote-into
$this->escape()
是 htmlspecialchars() 和 htmlentities()。因此,您可以简单地使用它们,或者编写您自己的方法。您应该避免在模型中使用
escape()
,而是在控制器中使用它们(或者在您看来更好),如下所示:$this->escape()
is an alias to htmlspecialchars() and htmlentities(). Therefore, you can simply use them as if or write your own method.You should avoid to use
escape()
in your models but instead use them in your controllers (or even better, in your view) as follow: