ubuntu 升级 php版本 并支持xDebug

不是什么教程,只是记录一下。

升级PHP

apt search php7 最新是7.0版本的,所以还是选择编译安装

// 查看当前版本
molsen@monster: php -i |grep configure
// 下载需要的版本
molsen@monster: wget http://hk1.php.net/get/php-7.1.11.tar.gz/from/this/mirror
// 命名
molsen@monster: mv mirror php-7.1.11.tar.gz
molsen@monster: tar zxvf php-7.1.11.tar.gz
molsen@monster: cd php-7.1.11/
molsen@monster: ./configure  --prefix=/usr/local/php7 --enable-fpm --enable-ftp --enable-mbstring --enable-soap --enable-sockets --enable-zip --with-fpm-user=www --with-fpm-group=www --with-litespeed --with-libxml-dir --with-openssl --with-pcre-regex --with-zlib --with-bz2 --with-curl --with-pcre-dir --with-openssl-dir --with-gd --with-webp-dir --with-jpeg-dir --with-png-dir --with-zlib-dir --with-xpm-dir --with-freetype-dir --with-mcrypt --with-mysqli --with-mysql-sock --with-pdo-mysql --with-xmlrpc --with-xsl --with-libzip
molsen@monster: make 
molsen@monster: make install
molsen@monster: php -v

xDebug安装

molsen@monster: tar zxvf xdebug-2.5.5.tgz
molsen@monster: cd xdebug-2.5.5/
molsen@monster: /usr/local/php7/bin/phpize
molsen@monster: ./configure --enable-xdebug --with-php-config=/usr/local/php7/bin/php-config
molsen@monster: make
molsen@monster: make install

phpize 这一步,如果提示:

Cannot find autoconf. Please check your autoconf installation and the
$PHP_AUTOCONF environment variable. Then, rerun this script.

你就需要 apt install autoconf 来安装自动配置

具体配置 php.ini 和 vscode 参见《Mac系统 Visual Studio Code PHP7 xDebug 调试配置》

    原文作者:暮隼
    原文地址: https://www.jianshu.com/p/4e72aad0fa7f
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞