编程语言
首页 > 编程语言> > php-如何使xdebug与Zend Studio一起使用

php-如何使xdebug与Zend Studio一起使用

作者:互联网

我有以下配置:

在远程计算机上:

zend_extension=/usr/lib64/php/modules/xdebug.so  
xdebug.profiler_enable=0  
xdebug.profiler_enable_trigger=1  
xdebug.profiler_output_dir=/tmp/xdebug  
xdebug.remote_connect_back=1  
xdebug.remote_port=9000  

在本地计算机上:

>我已经安装了将PHP Debugger设置为XDebug的zend studio.
>接受设置为任何的远程会话.
>我使用远程连接(sftp)处理代码.
> telnet localhost 9000正在工作

我已经安装了简单的XDebug firefox插件.

现在,当我尝试运行远程脚本时,它没有提供任何调试信息.
我正在使用类似这样的get参数:XDEBUG_SESSION_START = test11

请让我知道我是否缺少任何内容或有关如何调试丢失的内容的提示.

解决方法:

确保您还具有配置参数:

xdebug.remote_enable=On

查看:http://www.xdebug.org/docs/remote

标签:xdebug,remote-debugging,zend-studio,php
来源: https://codeday.me/bug/20191102/1993958.html