php sublime 断点调试,PHP XDebug Sublime Text 单步调试

前置环境:已经安装好LNMP

1. 安装xdebug

可以通过pear包管理来安装

sudo apt-get install php-pear

sudo pecl install xdebug

这里我们直接通过apt安装

apt-get install php5-xdebug

20180110171032563981.png

程序已经自动创建了默认的配置文件

配置:

xdebug.ini位置:/etc/php5/mods-available/xdebug.ini

新增如下

zend_extension="/usr/lib/php5/20131226/xdebug.so"

xdebug.profiler_output_dir=/tmp

xdebug.profiler_output_name=cachegrind.out.%p

xdebug.profiler_enable_trigger=1

xdebug.profiler_enable=true

xdebug.remote_enable=true

xdebug.remote_host=127.0.0.1

xdebug.remote_port=9000

xdebug.remote_handler=dbgp

xdebug.remote_mode = req

xdebug.remote_connect_back = 1

xdebug.remote_autostart=0

xdebug.collect_vars = On

xdebug.collect_params = On

xdebug.auto_trace = On

xdebug.show_exception_trace = On

xdebug.trace_output_dir=/tmp

20180110171032565934.png

重启PHP5-FPM

/etc/init.d/php5-fpm restart

2. 开启调试

sublime 中 CRL+ALT+F9 打开调试界面

查看端口 9000

20180110171032566910.png

3.测试

创建文件test.php

for ($i=0; $i < 10; $i++) {

echo $i;

}

?>

20180110171032568863.png

可以看到我们断点的地方 $i = 0

Shift+f8: 打开调试面板

f8:打开调试面板快速连接

Ctrl+f8: 切换断点

Ctrl+Shift+f5: 运行到下一个断点

Ctrl+Shift+f6: 单步

Ctrl+Shift+f7: 步入

Ctrl+Shift+f8: 步出

CTRL+SHIFT+F7

20180110171032573746.png

本文地址:http://www.cnblogs.com/martin-tan/p/4921200.html

PHP X-Debug的文件

UBUNTU下面有KCachegrind直接打开,方便trace文件加载顺序

原文:http://www.cnblogs.com/martin-tan/p/4921200.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值