CentOS安装PHP的xdebug扩展功能

第一种方法:使用rpm包安装,使用的是ecel扩展仓库中的rpm包


The EPEL and REMI repo contains xdebug for php.

Their package name is: php-pecl-xdebug, so you can just go with yum install php-pecl-xdebug

EPEL 库的地址是:http://fedoraproject.org/wiki/EPEL

Also, for further reference on xdebug availability:http://pkgs.org/download/php-pecl-xdebug


php.ini配置文件中有一个选项可能会用到:http_errors,是否过滤错误信息中的HTML代码


第二种方法,使用源码编译安装,使用的是pecl方式,也可以直接下载源码编译安装


你可能还需要在编译环境中安装xdebug,下面的介绍应该会对你有帮助!

Installing Xdebug on CentOS

Here are exact steps to follow:

1. You need to install PHP’s devel package for PHP commands execution
yum install php-devel
Make sure you also have php-paer package installed
yum install php-pear

2. Next install GCC and GCC C++ compilers to compile Xdebug extension yourself.
yum install gcc gcc-c++ autoconf automake

3. Compile Xdebug
pecl install Xdebug

4. Find the php.ini file using
locate php.ini

And add the following line

[xdebug]
zend_extension="/usr/lib64/php/modules/xdebug.so"
xdebug.remote_enable = 1

5. Restart Apache
service httpd restart

6. Test if it works – create test.php with the following code

<?php phpinfo() ?>
and check if you have the following output


说明:注意一下你的so文件存放的位置,一定要找正确位置才能正常使用!


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值