如何检查我的操作是否正在 Zend Framework 中执行
在 zend 框架中,确保控制器操作正在执行的最佳方法是什么,以及如何检查操作中变量的不同值。 (不使用调试器)
In zend framework, what is the best way to be sure that my controller action is being executed and how can i check different values of the variables in the actions. (Without using debugger)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
var_dump()
(参见手册页)或
Zend_Log
到任意数量的目的地。请参阅:http://framework.zend.com/manual/en/zend 用于 FireBug/FirePHP 日志记录的.log.writers.html或
Zend_Log_Writer_Firebug()
是我的最爱。请参阅:http://www.christophdorn。 com/Blog/2008/09/02/firephp-and-zend-framework-16/var_dump()
(see manual page)or
Zend_Log
to any number of destinations. See: http://framework.zend.com/manual/en/zend.log.writers.htmlor
Zend_Log_Writer_Firebug()
for FireBug/FirePHP logging is my favourite. See: http://www.christophdorn.com/Blog/2008/09/02/firephp-and-zend-framework-16/将
die(Zend_Debug::dump($anyVariable));
放在您想要确保执行的行上:)Put
die(Zend_Debug::dump($anyVariable));
on the line you want to make sure is executed :)作为其他答案(使用 die() 和 var_dump/Zend_debug)的补充,我建议您 ZFDebug 工具栏
它可以向您显示有关当前请求的一些相关信息。
As an addition to the other answers (using die() & var_dump/Zend_debug), I'll advise you ZFDebug toolbar
It can show you some relevant informations about the current request.