如何在 PHP 中使用 -e 选项?
命令行上的 php
告诉我它有一个选项:
-e Generate extended information for debugger/profiler
但是,通过运行我的命令行脚本,我什么也看不到......那个选项有什么用?
php
on the command line tells me that it has an option:
-e Generate extended information for debugger/profiler
However by running my command line script with that I see nothing... what's that option for?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
此扩展信息适用于调试器和分析器。 (例如 xdebug 或 ZendDebugger)
通常,此开关由支持调试器(如 Eclipse PDT)的 IDE 使用,
请参阅 http://www.xdebug.org/docs/ 例如。
This extended information are for debuggers and profilers. (eg. xdebug, or ZendDebugger)
Normaly this switch is used by IDE's with support for debugger (like Eclipse PDT)
see http://www.xdebug.org/docs/ for examples.