选择Other Local… 配置如下: 假设WAMP安装路径为D:\WAMP64\,版本号可能会有差异,根据实际情况进行浏览选择。 PHP executable设置为D:\WAMP64\bin\php\php5.6.16\php.exe(点击…按钮浏览) Debugger extension设置为D:\WAMP64\bin\php\php5.6.16\zend_ext\php_xdebug-2.4.0rc2-5.6-vc11-x86_64.dll(点击…...
2.最终定格在: 使用phpstudy+xdebug+phpstrom,把之前安装的PHPstudy卸载之后,利用本身的xdebug安装,自动完成php.ini的编写,然后再把phpinfo信息ctrl+A复制放在到https://xdebug.org/wizard检测,再下载最新的xdebug版本到phpstudy替换xdebug文件,再手动编写一下php.ini应该可以就正常安装完成。配置的端口统一用9090。一直...
xdebug.remote_host = 127.0.0.1 ;指定远程调试的主机名,我们本地调试就设置127.0.0.1 xdebug.remote_port = 9000 ;指定远程调试的端口号 xdebug.idekey = "PhpStorm" ;指定传递给DBGp调试器处理程序的IDE Key xdebug.remote_handler = "dbgp" ;指定远程调试的处理协议 xdebug.remote_mode = "req" ;可选req...
phpstorm+xdebug断点调试php 1、下载xdebug模块 xdebug下载地址:https://xdebug.org/download.php 注意:带"ts"是线程安全的意思,"nts"的他没有标示,也就是说,如果是nts的要下载没标示的,下载下来的文件名其实是有标示的。 2、把xdebug安装到php 把下载的dll拷贝到php里面的ext文件夹里(扩展dll都在这里),...
xdebug.remote_port = 9000 xdebug.idekey = phpstorm-xdebug zend_extension="F:\phpstudy\PHPTutorial\php\php-5.5.38\ext\php_xdebug-2.5.1-5.5-vc11-nts.dll" 配置如上 2.修改PHPStorm配置 图1 打开设置 图2 搜索xdebug 端口信息修改 如果是9000 就不用修改 ...
zend_extension="F:\phpStudy\php55n\ext\xdebug.dll" xdebug.idekey = PHPSTORM 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 配置如上 2.修改PHPStorm配置 图1 打开设置 图2 搜索xdebug 端口信息修改 如果是9000 就不用修改 ...
xdebug.idekey=PhpStorm 其中remote_host 是指调试客户端的地址,即IDE所在的IP, remote_port 是客户端的端口,这两项在远程调试的情况下注意修改 2、打开phpstudy,验证模块是否安装成功 找到你的php路径,比如我的是D:\phpStudy\php\php-5.6.27-ntsphp.exe, ...
配置 一、PHPstudy 配置 1.打开 phpstudy 中的 xdebug 扩展 2.修改对应php版本的 文件,我用的版本是 7.3.4 二、Phpstorm 配置 ...
1.若xdebug.remote_port=9000端口没有冲突的话,PHPstorm里面的端口默认也是9000无需做修改. 也就是说phptorm只需要开启监听的那个电话就行,其他文章的那些配置项完全可以省略,实测不配置也可以开启调试. 3.打断点,测试开启调试. 浏览器访问,追加get参数XDEBUG_SESSION_START=PHPSTORM.例如http://bst.com/site/say...
xdebug.remote_enable=1 # 开启远程调试 xdebug.idekey='PHPSTORM' # sessionkey xdebug.remote_port=9001 # 远程调试通信端口 xdebug.profiler_output_dir="C:phpStudyPHPTutorialtmpxdebug" xdebug.trace_output_dir="C:phpStudyPHPTutorialtmpxdebug"