Zend Studio使用Xdebug调试

1、项目名称更换后,要清除下面的内容,才能使xdebug正常使用

Zend Studio使用Xdebug调试_第1张图片

这里清掉之后,ide会自己加进去。

2、要检查remoter server上面的php.ini 配置是否正确,一个是ip,一个是端口

ip不正确会导致网站打开奇慢,端口不正确则不能进入本地的断点

文件路径:vim /etc/php.ini

zend_extension= "/usr/lib64/php/modules/xdebug.so"

xdebug.remote_host=192.168.232.24

xdebug.remote_port=9005

xdebug.remote_enable=true

xdebug.remote_handler=dbgp

xdebug.remote_autostart = true


xdebug.profiler_enable = Off

xdebug.profiler_enable_trigger = On

xdebug.profiler_output_dir = "/tmp/xdebug"

xdebug.profiler_output_name = cachegrind.out.%s

xdebug.show_exception_trace = Off

xdebug.show_local_vars = 1

xdebug.max_nesting_level = 50

xdebug.var_display_max_depth = 6

xdebug.dump_once = On

xdebug.dump_globals = On

xdebug.dump_undefined = On

;xdebug.dump.REQUEST = *

xdebug.dump.SERVER = REQUEST_METHOD, REQUEST_URI, HTTP_USER_AGENT

Zend Studio使用Xdebug调试_第2张图片

3、简单的调试可以使用打印语句:

echo '<pre>';
print_r($this->request);


你可能感兴趣的:(Zend Studio使用Xdebug调试)