模型上的 $this->escape()

发布于 2025-01-08 02:49:04 字数 60 浏览 1 评论 0原文

有没有办法可以在模型上或控制器内部使用 $this->escape()

Is there a way that I can use $this->escape() on models or inside the controller?

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

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

发布评论

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

评论(2

红ご颜醉 2025-01-15 02:49:04

$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 to htmlentities() , 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

月牙弯弯 2025-01-15 02:49:04

$this->escape()htmlspecialchars()htmlentities()。因此,您可以简单地使用它们,或者编写您自己的方法。

您应该避免在模型中使用 escape() ,而是在控制器中使用它们(或者在您看来更好),如下所示:

// instantiate Zend_View
$view = new Zend_View();
$view->setEscape('htmlentities');
$obj = new My_Model();
$view->setEscape(array($obj, 'methodName'));
echo $view->render(...);

$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:

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