如何将PHP 7 RC移除(升级)到centOS上的新稳定版本?
由于
答案 0 :(得分:2)
为了卸载PHP 7.0 RC并安装最终版本的PHP 7 12月3日发布,首先你需要手动删除目录和PHP 7 RC的文件,为此你需要做的事情:
1步: 手动卸载PHP-7.0.0RC1文件夹
cd /opt
sudo rm -rf php-7.0.0RC1
2步骤 卸载libphp7.so
cd /usr/lib64/httpd/modules/
sudo rm -rf libphp7.so
3步骤 从php.net oficial页面下载PHP 7.0.0 Realased 12月3日
sudo wget http://php.net/get/php-7.0.0.tar.bz2/from/this/mirror
4步: 从/ opt
中提取* tar.bz2的文件tar xzf php-7.0.0RC1.tar.gz -C /opt
5步骤 完成后,让我们进入/opt/php-7.0.0并使用-force开关执行buildconf脚本,以强制构建这个新版本。
cd /opt/php-7.0.0
ls
./buildconf --force
6步骤 现在是时候执行configure命令了。虽然下面的选项将确保标准的PHP 7安装,但您可以参考PHP手册中的完整选项列表,以便根据您的需要更好地自定义安装:
./configure \
--prefix=$HOME/php7/usr \
--with-config-file-path=$HOME/php7/usr/etc \
--enable-mbstring \
--enable-zip \
--enable-bcmath \
--enable-pcntl \
--enable-ftp \
--enable-exif \
--enable-calendar \
--enable-sysvmsg \
--enable-sysvsem \
--enable-sysvshm \
--enable-wddx \
--with-curl \
--with-mcrypt \
--with-iconv \
--with-gmp \
--with-pspell \
--with-gd \
--with-jpeg-dir=/usr \
--with-png-dir=/usr \
--with-zlib-dir=/usr \
--with-xpm-dir=/usr \
--with-freetype-dir=/usr \
--enable-gd-native-ttf \
--enable-gd-jis-conv \
--with-openssl \
--with-pdo-mysql=/usr \
--with-gettext=/usr \
--with-zlib=/usr \
--with-bz2=/usr \
--with-recode=/usr \
--with-mysqli=/usr/bin/mysql_config \
--with-apxs2
7步骤 完成后,执行以下命令:
make
之后:
make install
8步骤 最终重启你的apache服务器
sudo /sbin/service httpd restart
9步骤 它已经完成了!现在您可以运行 phpinfo() 来检查版本" PHP 7.0.0"安装。