PHP5.3.3升級PHP7.1.6

來源:互聯網
上載者:User

標籤:sem   net   ber   file   exp   升級   命令   ttf   pre   

今天第一次嘗試升級PHP,在網上找了好多相關的資料,以下是我的升級過程:

系統:Centos6.7;Apache:2.4.26

首先下載PHP的安裝包:

http://php.net/downloads.php

然後解壓安裝:

# tar zxvf php-7.1.6.tar.gz
# cd php-7.1.6

可以先查看下安裝協助,當然你也可以不管
# ./configure   --help  

由於系統中已經存在老版本的PHP,所以新版的php7 我就安裝到 /usr/local/php7 了。

下面是我的編譯參數:

./configure --prefix=/usr/local/php7 --with-apxs2=/usr/local/apache/bin/apxs --with-libiconv-prefix=/usr/local/lib --with-curl --with-freetype-dir --with-gd --with-gettext --with-iconv-dir --with-kerberos --with-libdir=lib64 --with-libxml-dir  --with-mysqli --with-openssl --with-pcre-regex --with-pdo-mysql --with-pdo-sqlite --with-pear --with-png-dir  --with-xmlrpc  --with-xsl  --with-zlib --enable-fpm --enable-bcmath --enable-libxml --enable-inline-optimization --enable-gd-native-ttf  --enable-mbregex --enable-mbstring --enable-opcache --enable-pcntl  --enable-shmop --enable-soap --enable-sockets --enable-sysvsem  --enable-xml --enable-zip

其中:--prefix=/usr/local/php7 是PHP的安裝路徑

      --with-apxs2=/usr/local/apache/bin/apxs 是用來整合Apache

      --with-libiconv-prefix=/usr/local/lib 是PHP的依賴庫

編譯之後使用make && make install

在make之前需要改一下Makefile

#vim Makefile

找到:EXTRA_LIBS = -lcrypt -lz …… -lcrypt 這行,在這行末尾添加-liconv

然後在進行make && make install

網上有說在make這一步使用make ZEND_EXTRA_LIBS=‘-liconv‘命令也可以,但是我在使用時並沒有成功。

在新版本安裝完成以後需要更改apache的設定檔httpd.conf

#LoadModule php5_module modules/libphp5.so
LoadModule php7_module modules/libphp7.so

在這需要把之前PHP5的模組注釋掉,不然Apache會起不來。

最後重起Apache就可以了。

現在再使用php -v 查看PHP版本號碼時還是會顯示之前老的版本號碼

這樣就需要更改一下環境變數:

編輯profile檔案

#vim /etc/profile

在檔案最後添加:export PATH="/usr/local/php7/bin:$PATH"

重新負載檔案就可以了

#source /etc/profile

這樣再查看PHP版本號碼就沒有問題了。可以將之前的老版本的PHP刪掉。

PHP5.3.3升級PHP7.1.6

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.