在视图助手中获取请求信息
是否可以在 Zend View 助手(扩展 Zend_View_Helper_Abstract
)中获取有关调用该助手的模块/控制器/操作的信息?
Is it possible in Zend View helper (extends Zend_View_Helper_Abstract
) get info about module/controller/action in which that helper was called ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的。您可以在视图助手中使用
Zend_Controller_Front::getInstance()
。所以你可以这样做:当在你的视图中调用时,它将打印当前控制器名称:
Yes. You can use
Zend_Controller_Front::getInstance()
within view helpers. So you could do something like this:Which will print the current controller name when called in your view with: