Home > Backend Development > PHP Tutorial > php 装配xdebug扩展

php 装配xdebug扩展

WBOY
Release: 2016-06-13 12:11:51
Original
922 people have browsed it

php 安装xdebug扩展

 

php 扩展获取地址 http://pecl.php.net/package/

编译安装的过程

wget http://pecl.php.net/get/xdebug-2.2.2.tgz
tar -zxvf xdebug-2.2.2.tgz
cd xdebug-2.2.2/
/data/klj/php/bin/phpize
./configure --enable-xdebug --with-php-config=/data/klj/php/bin/php-config
make
make install

修改php配置文件 配置xdebug端口和phpstrom一致

zend_extension = "/data/klj/php/lib/php/extensions/no-debug-non-zts-20131226/xdebug.so"<span style="color: #000000;">xdebug</span>.remote_enable =1<span style="color: #000000;">xdebug</span>.remote_handler = "dbgp"<span style="color: #000000;">xdebug</span>.remote_host = "localhost"<span style="color: #000000;">xdebug</span>.remote_mode = "req"<span style="color: #000000;">xdebug</span>.remote_port = 9001<span style="color: #000000;">xdebug</span>.idekey = PHPSTORM
Copy after login

修改phpstrom配置

 

 

 

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template