PHP XDebug Sublime Text 单步调试,xdebugsublime_PHP教程

WBOY
풀어 주다: 2016-07-12 09:06:08
원래의
1054명이 탐색했습니다.

PHP XDebug Sublime Text 单步调试,xdebugsublime

前置环境:已经安装好LNMP

1. 安装xdebug

可以通过pear包管理来安装

sudo apt-get install php-pear

sudo pecl install xdebug

这里我们直接通过apt安装

apt-get install php5-xdebug

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

配置:

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

重启PHP5-FPM

/etc/init.d/php5-fpm restart

2. 开启调试


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

查看端口 9000

 

3.测试

创建文件test.php

 

    for ($i=0; $i

        echo $i;

    }

?> 

 

在浏览器里访问 http://127.0.0.1/test.php

 

 

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

Shift+f8: 打开调试面板
f8:打开调试面板快速连接
Ctrl+f8: 切换断点
Ctrl+Shift+f5: 运行到下一个断点
Ctrl+Shift+f6: 单步
Ctrl+Shift+f7: 步入
Ctrl+Shift+f8: 步出

 

CTRL+SHIFT+F7 

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

PHP X-Debug的文件 

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

 

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/1065786.htmlTechArticlePHP XDebug Sublime Text 单步调试,xdebugsublime 前置环境:已经安装好LNMP 1. 安装xdebug 可以通过pear包管理来安装 sudo apt-get install php-pear sudo pecl i...
관련 라벨:
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿