zend 框架中的 $this->escape() 实际上是做什么的?

发布于 2024-08-15 11:16:28 字数 131 浏览 11 评论 0原文

我需要帮助来理解 Zend Framework 中辅助函数的实际操作。

在将字符串打印到模板中之前,我需要有人向我解释 $this->escape($string) 对传递给它的字符串实际上做了什么。

I need help in understanding the actual actions of a helper function in Zend Framework.

I need someone to explain to me what $this->escape($string) actually does to the string passed to it before printing the string into the template.

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

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

发布评论

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

评论(3

沧桑㈠ 2024-08-22 11:16:28

$this->escape() 根据您可以使用 $this->setEscape('functionname') 提供的设置转义字符串,默认情况下它是 PHP 的 htmlspecialchars功能。

http://framework.zend.com/manual/en/zend.view .scripts.html

$this->escape() escapes a string according to settings you can provide with $this->setEscape('functionname'), by default it is PHP's htmlspecialchars function.

http://framework.zend.com/manual/en/zend.view.scripts.html

故事未完 2024-08-22 11:16:28

It calls the htmlspecialchars PHP function.

执行的翻译是:

  • '&' (&) 变成“&”
  • '"'(双引号)变为 '"'
  • '<' (小于)变为“<”
  • '>' (大于)变为 '>'

It calls the htmlspecialchars PHP function.

The translations performed are:

  • '&' (ampersand) becomes '&'
  • '"' (double quote) becomes '"'
  • '<' (less than) becomes '<'
  • '>' (greater than) becomes '>'
猥琐帝 2024-08-22 11:16:28

在 PiKe 项目中,我们构建了一个自定义流包装器,它会自动转义所有视图变量,默认情况下可以安全地防范 XSS,同时对性能影响最小!您仍然可以通过以下方式获取 RAW 值:

注意“~”字符。查看 http://code.google.com/p/php-pike/wiki/ Pike_View_Stream

Over at the PiKe project we build a custom stream wrapper that automatically escapes all view variables to be safe by default against XSS, with a MINIMAL performance hit! You can still get the RAW value with:

<?=~ $variable ?>

Notice the "~" character. Checkout http://code.google.com/p/php-pike/wiki/Pike_View_Stream

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