在ubuntu下,進行php7源碼安裝

        做爲一名php的攻城師,若是沒有玩php源碼安裝是說不過去的。咱們知道php之因此這麼流行,跟它的開源文化和lamp配套有很大關係。因爲PHP7廢棄了不少功能,因此一些依賴這些功能的程序可能沒法運行,嚐鮮前請三思。好比不少國產軟件都在依賴的mysql相關函數,若是本身開發php應用請用mysqli代替。不過WordPress是沒有問題的,盡情使用吧。php

       下面進入正題,第一步,固然是下載源碼和解壓        mysql

$ cd ~
$ wget http://cn2.php.net/distributions/php-7.0.2.tar.gz
$ tar -zxvf php-7.0.2.tar.gz
cd php-7.0.2

 第二步,是編譯配置,若是你以前有安裝其它版本的php,請先刪除,再安裝php7;linux

./configure --prefix=/opt/php-7.0.5 --with-config-file-path=/opt/php-7.0.5/etc --enable-fpm --with-fpm-user=www-data --with-fpm-group=www-data --with-mysql-sock --with-mysqli --with-pdo-mysql --with-iconv-dir --with-freetype-dir --with-jpeg-dir --with-png-dir --with-libxml-dir=/usr --disable-rpath --enable-bcmath --enable-shmop --enable-inline-optimization --with-curl --enable-mbregex --enable-mbstring --enable-ftp --with-gd --enable-gd-native-ttf --enable-sockets --enable-soap --without-pear --with-gettext --disable-fileinfo --enable-maintainer-zts --disable-debug --enable-shared --enable-opcache --enable-pdo --with-iconv --with-mcrypt --with-mhash --with-openssl --enable-xml --with-xmlrpc --with-libxml-dir --enable-pcntl --enable-sysvmsg --enable-sysvsem --enable-sysvshm --with-zlib --enable-zip --with-readline --without-sqlite3 --without-pdo-sqlite --with-libdir=/lib/x86_64-linux-gnu --with-jpeg-dir=/usr/lib --with-apxs2=/usr/bin/apxs --enable-cgi

其實這一步,會遇到不少問題,系統很拋出一些錯誤出來,通常都是因爲系統缺乏必要的依賴庫。咱們能夠求助度娘進行解決,就不詳述了。sql

第三步,編譯和安裝php7

$ make && make test
$ make && sudo make install
相關文章
相關標籤/搜索