Ubuntu、debian7命令行安装php5.6和xdebug

第一步
如果你的服务器上安装的php版本<= 5.6,就更新至php5.6。
Ubuntu:

sudo add-apt-repository ppa:ondrej/php5-5.6 -y
sudo apt-get update
sudo apt-get install php5-fpm -y

Debian Wheezy:

echo "deb http://packages.dotdeb.org wheezy-php56 all" >> /etc/apt/sources.list.d/dotdeb.list
echo "deb-src http://packages.dotdeb.org wheezy-php56 all" >> /etc/apt/sources.list.d/dotdeb.list
wget http://www.dotdeb.org/dotdeb.gpg -O- | apt-key add - 
apt-get update
apt-get install php5-fpm

第二步、安装xdebug

sudo apt-get install php-pear
sudo apt-get install php5-dev
sudo pecl install xdebug

第三步、配置xdebug

zend_extension="/usr/lib/php5/20131226[自己的路径]/xdebug.so"
xdebug.remote_enable=on
xdebug.remote_handler=dbgp
xdebug.remote_host=你的本地主机IP
xdebug.remote_port=9000
xdebug.idekey=phpStorm
xdebug.remote_autostart=1

参考:
https://www.jiloc.com/41977.html
http://www.linuxidc.com/Linux/2011-09/43031p2.htm

你可能感兴趣的:(喵喵~心得体会)