如何检查我的操作是否正在 Zend Framework 中执行

发布于 2024-10-31 12:19:55 字数 63 浏览 0 评论 0原文

在 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 技术交流群。

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

发布评论

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

评论(3

芸娘子的小脾气 2024-11-07 12:19:55

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.html

or

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/

少女的英雄梦 2024-11-07 12:19:55

die(Zend_Debug::dump($anyVariable)); 放在您想要确保执行的行上:)

Put die(Zend_Debug::dump($anyVariable)); on the line you want to make sure is executed :)

梦毁影碎の 2024-11-07 12:19:55

作为其他答案(使用 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

enter image description here

It can show you some relevant informations about the current request.

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