欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

PHP环境配置 博客分类: Web前端 phpzend 

程序员文章站 2024-03-19 23:28:16
...
一、PHP安装
路径:http://windows.php.net/downloads/releases/archives/
版本:php-5.3.5-Win32-VC6-x86.zip

二、配置Xdebug
下载支持5.3版本的Xdebug(Xdebug 2.1.0)
PHP 5.3 VC6 TS (32 bit)
在php.ini的末尾添加如下内容:
[Xdebug]
zend_extension="D:/PHP/ext/php_xdebug-2.1.0-5.3-vc6.dll"
xdebug.auto_trace=1
xdebug.show_exception_trace=1
xdebug.collect_params=1
xdebug.collect_return=1
xdebug.profiler_enable=1
xdebug.remote_enable=1 
xdebug.remote_autostart=1  
xdebug.remote_host=127.0.0.1 
xdebug.remote_port=9000      
xdebug.remote_handler=dbgp
相关标签: php zend