0

如何在 centOS 上删除(升级)PHP 7 RC 到新的稳定版本?

谢谢

4

1 回答 1

2

要卸载 PHP 7.0 RC 并安装 PHP 7 Realeased 12 月 3 日的最终版本,首先您需要手动删除 PHP 7 RC 的目录和文件,为此您需要执行以下操作:

1 步骤: 手动卸载 PHP-7.0.0RC1 文件夹

cd /opt
sudo rm -rf php-7.0.0RC1

第二步: 卸载libphp7.so

cd /usr/lib64/httpd/modules/
sudo rm -rf libphp7.so

3 步: 从 php.net 官方页面下载 PHP 7.0.0 Realased 3 December

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 步: 现在是时候执行配置命令了。虽然下面的选项将确保标准的 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”版本。

于 2015-12-04T15:19:24.513 回答