zend studio 使用断点调试,zendstudio
풀어 주다: 2016-06-13 09:05:53
zend studio 使用断点调试,zendstudio
1, 下载 Xdebug
2, 安装
3, 修改 php.ini
03 |
zend_extension= "D:/Program Files/EasyPHP-5.3.2i/php/ext/php_xdebug.dll"
|
05 |
xdebug.profiler_enable=on |
06 |
xdebug.trace_output_dir= "E:/xdebug" ;xdebug 的数据文件目录
|
07 |
xdebug.profiler_output_dir= "E:/xdebug" ;xdebug 的数据文件目录
|
08 |
xdebug.max_nesting_level = 10000 ;如果设得太小,函数中有递归调用自身次数太多时会报超过最大嵌套数错 |
10 |
xdebug.remote_enable= true ;Xdebug允许远程IDE连接
|
11 |
xdebug.remote_host=127.0.0.1 ;允许连接的zend studio的IP地址 |
12 |
xdebug.remote_port=9000 ;反向连接zend studio使用的端口 |
13 |
xdebug.remote_handler=dbgp ;用于zend studio远程调试的应用层通信协议 |
4, 修改 Zend Studio 设置
1 |
Window -> Preferences -> PHP -> Debug |
5, 在项目中新建一个 test.php 文件
view source
print?
2 |
for ( <code class="variable">$i = 0; <code class="variable">$i <code class="variable">$i ++) {
|
3 |
if ( <code class="variable">$i==5) {
|
6, 新建一个 Debug 命令
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
저자별 최신 기사
-
2024-10-22 09:46:29
-
2024-10-13 13:53:41
-
2024-10-12 12:15:51
-
2024-10-11 22:47:31
-
2024-10-11 19:36:51
-
2024-10-11 15:50:41
-
2024-10-11 15:07:41
-
2024-10-11 14:21:21
-
2024-10-11 12:59:11
-
2024-10-11 12:17:31