经过鸟哥等众位大神打磨了2年的PHP 7,终于出了发布了alpha版本,安装,真是非常地向下兼容,下载,解压,把之前的配置命令用上,一路回车下去,毫无违和感。
首先当然是下载php7 alpha版本的源码包了,去php的官网 www.php.net 下载即可,为了方便起见,附上下载链接。
解压下载源码包,然后如下操作【这里以我的安装为例,其他的类似】
tar -zxvf php-7.0.0alpha1.tar.gz
cd php-7.0.0alpha1
./buildconf
./configure --prefix=/usr/local/php7 --enable-fpm --with-fpm-user=www --with-fpm-group=www --with-mysqli --with-pdo-mysql --with-iconv-dir --with-freetype-dir --with-jpeg-dir --with-png-dir --with-zlib --with-libxml-dir=/usr --enable-xml --disable-rpath --enable-bcmath --enable-shmop --enable-sysvsem --enable-inline-optimization --with-curl --enable-mbregex --enable-mbstring --with-mcrypt --enable-ftp --with-gd --enable-gd-native-ttf --with-openssl --with-mhash --enable-pcntl --enable-sockets --with-xmlrpc --enable-zip --enable-soap --without-pear --with-gettext --disable-fileinfo --enable-maintainer-zts
make
sudo make install
#最后来测试一把
/usr/local/php7/bin/php -v
PHP 7.0.0alpha1 (cli) (built: Jun 14 2015 18:24:50)
Copyright (c) 1997-2015 The PHP Group
Zend Engine v3.0.0-dev, Copyright (c) 1998-2015 Zend Technologies
上面的过程如果顺利的话。php7就安装成功了,如果有错误的话那还是得解决一下,这里就列出了几个我在安装过程中遇到的一些错误:
错误1
configure: error: jpeglib.h not found.
解决办法:
sudo brew install libjpeg
错误2
configure: error: png.h not found.
解决办法:
sudo brew install libpng #这里我使用brew安装libpng的适合老是提示download失败,于是干脆使用源码安装了,如下: tar -zxvf libpng-1.6.16.tar.gz cd libpng-1.6.16 ./configure make sudo make install
libpng下载地址: libpng-1.6.16.tar.gz
错误3
configure: error: Cannot locate header file libintl.h
解决办法:
#安装 gettext sudo brew install gettext #编辑 configure 文件,找到 $PHP_GETTEXT /usr/local /usr 在后面加上gettext的路径 $PHP_GETTEXT /usr/local /usr /usr/local/opt/gettext sudo vim configure #重新配置即可【后面参数和上面一样,这里省略了】 ./configure --prefix=...
好了,我的就这么多了,大家赶快去试试吧。。。