【大伙是怎样debugPHP的啊】教程文章相关的互联网学习教程文章

XDEBUGEXTENSIONFORPHP|DOCUMENTATION

http://xdebug.org/docs/ XDEBUG EXTENSION FOR PHP | DOCUMENTATION home | updates | download | documentation | license | support | issue tracker Documentation for: Xdebug 2 Installation This section describes on how to install Xdebug. Basic Features Xdebugs basic functions include the display of s...

phpdebug安装

软件开发的断点调试是必不可少,这里介绍ubuntu10.04中eclipse工具中php的调试配置。 本打算配置ZendDebugger 进行调试,配置了老长时间没配置成功,在phpinfo看不到ZendDebugger生效,经查发现是php5.3的问题,必须先卸载,本文介绍使用xdebug了。 软件安装太简单了,分别执行如下命令: sudo apt-get install apache2 sudo apt-get install php5 sudo apt-get install php5-cli sudo apt-get install php5-xde...

PHP.iniZendDebugger

[PHP];;;;;;;;;;;;;;;;;;;; About php.ini ;;;;;;;;;;;;;;;;;;;;; This file controls many aspects of PHPs behavior. In order for PHP to; read it, it must be named php.ini. PHP looks for it in the current; working directory, in the path designated by the environment variable; PHPRC, and in the path that was defined in compile time (in that order).; Under Windows, the compile-time path is the Window...

PDT+Xdebug调试PHP

环境: PHP Version 5.2.9-1 Apache 2.2.11Mysql5.0 PDT(PHP Development Tools) http://www.eclipse.org/pdt/downloads/ 下载pdt all-in-ones,我下的版本是pdt-all-in-one-win32-2.0.0GA.zip http://www.xdebug.org/download.php 下载xdebug,对应的php版本,由于我的是php5.2.9 xdebug没有对应的5.2.9。所以选择5.2.5或者5.2.8(之前下过5.3.0,没有配置成功) php_xdebug-2.0.3-5.2.5.dll 或 ...

RHEL6X86_64安装PHPxdebug

系统环境: RHEL6 X86_64; PHP5.3.2;安装 X D EBUG-2.1.0 ; 安装路径皆为默认 RHEL6的光碟是不带php-devel,需要下载安装[注1]。 rpm -ivh php-devel-5.3.2-6.el6.x86_64.rpm tar -xvzf xdebug-2.1.0 cd xdebug-2.1.0 phpize ./configure --enable-xdebug --with-php-config=/usr/lib64/php-config make mkdir /usr/lib64/php/xdebug cp /modules/xdebug.so /usr/lib64/php/xdebug ...

netbeans下xdebug调试php

netbean-xdebug配置 下载 php_xdebug-2.0.4-5.2.8.dll 文件,放到php的ext文件夹下 在php.ini中添加如下内容 zend_extension_ts="C:/php/ext/php_xdebug-2.0.4-5.2.8.dll" xdebug.remote_enable=1 xdebug.remote_host=127.0.0.1 xdebug.remote_port=9000 xdebug.remote_handler=dbgp netbeans 官网描述 netbeans官网也是学习该平台更好的去处 http://netbeans.org/kb/index_zh_CN....

PHP之Xdebug的配置

本文主要讲解Windows下PHP 5.3中的Xdebug的配置: 我的配置如下: [xdebug] zend_extension = " E:/Program Files/PHP/php_xdebug-2.1.0RC1-5.3-vc6.dll " ;注意这里要用全路径 xdebug.remote_enable = on xdebug.remote_handler = dbgp xdebug.remote_host = localhost xdebug.remote_port = 9000 注意事项有如下几点: ①:xdebug的版本,要下载正确的版本,VC6的才支持...

VIM+Xdebug调试php

VIM+Xdebug调试php 1.安装Xdebug sudo apt-get install php5-xdebug 2.配置Xdebug 编辑/etc/php5/apache2/conf.d/xdebug.ini,加入 xdebug.remote_enable = 1 xdebug.remote_port = 9000 xdebug.remote_host = localhost 3.安装vim插件DBGp 下载页面: http://www.vim.org/scripts/script.php?script_id=1929 下载后放入plugins目录中即可。 4.在浏览器中打开要调试...

php-debug-apd-调试器

http://www.phpq.net/doc/php/ref.apd.phphttp://pecl.php.com/package/apd 简介 APD 是 Advanced PHP Debugger,即高级 PHP 调试器。是用来给 PHP 代码提供规划与纠错的能力,以及提供了显示整个堆栈追踪的能力。 APD 支持交互式纠错,但默认是将数据写入跟踪文件。它还提供了基于事件的日志,因此不同级别的信息(包括函数调用,参数传递,计时等)可以对个别的脚本打开或关闭。 APD 是一个 Zend 扩展库,修...

VimXDebug调试PHPphp远程调试

xdebug 配置 xdebug 安装 原文地址:http://xiaobin.net/201007/using-vim-and-xdebug-to-debug-php-code/ 原理上,这种调试方式主要依靠Vim的插件“remote PHP debugger”来实现,该插件实现了一个DBGP服务端。调试的时候Xdebug将会与服务端建立一个连接进行通信,接收服务端的调试指令并返回调试结果。 安装和配置 XDebug 安装: ubuntu 下直接 apt-get install php5-xdebug 安装 到/usr/lib/p...

[PHP]如何在NetBeans中使用xdebug来调试php

其实,文章的重点是放在了如何配置php的xdebug环境,毕竟环境搭好了,像NetBeans,Eclipse这样的IDE,随便哪个都可以做php的调试的。 操作环境: OS: Ubuntu 10.04 Server: xampp 1.7.3a 1. 下载xdebug.so 方便懒人,不用去编译,所以就提供一个32位的xdebug.so。 http://download.csdn.net/source/2757538 下载好之后,把文件放到(注意这个跟你安装xamp的路径不同而不同,这个是通用的安装路径) ...

xdebug的怪异问题

本帖最后由 xiaomiaode 于 2013-08-30 16:35:52 编辑 xdebug问题 安装好了xdebug扩展,php.ini里面添加了 xdebug.profiler_enable=On xdebug.profiler_output_dir="F:/log" xdebug.profiler_output_name=cachegrind.out.%p.%s xdebug.default_enable = On xdebug.show_exception_trace = On xdebug.show_local_vars = On xdebug.max_nesting_level = 50 xdebug.var_display_max_depth = 6 xdebug.dump_o...

新手求助,无法安装Xdebug

OS: windows8,x64; PHP: php-5.5.3-Win32-VC11-x64,ts Server: Apache/2.4.4 (Win64) Xdebug: php_xdebug-2.2.3-5.5-vc11-x86_64.dll Installation reference: http://xdebug.org/wizard.php Step: 1 Download php_xdebug-2.2.3-5.5-vc11-x86_64.dll 2 Move the downloaded file to ext 3 Edit E:\Program Files\PHP\php.ini and add the line zend_extension = ext\php_xdebug-2.2.3-5.5-vc11-x8...

使用ZendStudio8XDebug断点调试不停止

说安装XDebug后可以进行断点调试,设置好使用xdebug后,开始调试了。 先设置好index.php的断点,然后选择“php web page”调试方式,系统自动打开一个web窗口显示内容,并没有在“断点”处停下来。 请问是哪里出了问题? 回复讨论(解决方案) 关于断点,ZendStudio,Elicpse 我只在Linux 下测试有效...win下一直都是没有生效过的. ZendStudio 断点无用,不知何因 本人花了4个小时来查找问题答案,后来发现问题的原...

ZendStudioDebug失效怎么办?

wamp +zendstudio 10 之前还用的好好地,然后就出问题了。 这些配置没有错。 debug里面的是空的是怎么回事? 好像我删除过一次。 回复讨论(解决方案) 现在有自己跑出来了。 没有人回答吗? 散分啊。 没有满意答案,分数没办法回收一半啊! 恭喜恭喜。。