php xdebug配置

1.sublime

火绒
火绒安装插件Xdebug Helper for Firefox
管理插件 -…-选项 填入ide key
php xdebug配置_第1张图片
sublime
第一个插件package control
ctrl+shifit+p 输入install 点击安装第一个包管理 package control
php xdebug配置_第2张图片
第二个插件 xdebug
ctrl+shifit+p 输入xdebug clinet安装
php xdebug配置_第3张图片
php配置
这里用的时phpstudy_pro,php版本5.4.45,如果是单独下php的话,xdebug.dll需要另下
修改php.ini
php xdebug配置_第4张图片
php.ini配置,根据自己的文件位置进行修改

[XDebug]
xdebug.profiler_append = 0
xdebug.profiler_enable = 1
xdebug.profiler_enable_trigger = 0
xdebug.profiler_output_dir ="E:\phpstudy_pro\Extensions\tmp\tmp\xdebug"
xdebug.trace_output_dir ="E:\phpstudy_pro\Extensions\tmp\tmp\xdebug"
xdebug.profiler_output_name = "cache.out.%t-%s"
xdebug.remote_enable = 1
xdebug.remote_handler = "dbgp"
xdebug.remote_host = "127.0.0.1"
zend_extension="E:\phpstudy_pro\Extensions\php\php5.4.45nts\ext\php_xdebug.dll"

修改完php.ini重启服务器
使用
打开xdebug
php xdebug配置_第5张图片
ctrl+f8添加一个断点
火狐浏览器访问
成功收到
php xdebug配置_第6张图片

2.phpstrom
火绒
火绒安装插件Xdebug Helper for Firefox
管理插件 -…-选项 填入ide key
php xdebug配置_第7张图片

phpstrom设置

修改端口
php xdebug配置_第8张图片
设置服务器
php xdebug配置_第9张图片
验证xdebug是否能使用,全是对号是配置正确的
php xdebug配置_第10张图片
使用
phpstrom添加断点,代开xdebug,保证后面像电话的东西是联通的,也就是下面的状态
php xdebug配置_第11张图片
火绒访问
127.0.0.1/4.php,并把插件开关打开
php xdebug配置_第12张图片

phpstrom成功收到
php xdebug配置_第13张图片
步进 进入下一行php代码
步入 进入函数或类的定义
步出 出来这个函数

你可能感兴趣的:(php,php,开发语言,服务器)