PHP(Hypertext Preprocessor)英文超級文本預處理語言。PHP 是一種HTML內嵌式的語言,是一種在服務器端執行的嵌入HTML文檔的腳本語言。官網:www.php.net.php
下載: [root@1 src]# wget http://cn2.php.net/distributions/php-5.6.30.tar.gz 解壓: [root@1 src]# tar zxvf php-5.6.30.tar.gz
[root@1 src]# cd php-5.6.30/
[root@1 php-5.6.30]# ./configure --prefix=/usr/local/php --with-apxs2=/usr/local/apache2.4/bin/apxs --with-config-file-path=/usr/local/php/etc --with-mysql=/usr/local/mysql --with-pdo-mysql=/usr/local/mysql --with-mysqli=/usr/local/mysql/bin/mysql_config --with-libxml-dir --with-gd --with-jpeg-dir --with-png-dir --with-freetype-dir --with-iconv-dir --with-zlib-dir --with-bz2 --with-openssl --with-mcrypt --enable-soap --enable-gd-native-ttf --enable-mbstring --enable-sockets --enable-exif #參數解析: --prefix=/usr/local/php 指定安裝目錄 --with-apxs2=/usr/local/apache2.4/bin/apxs 該文件是Apache的一個工具,能夠將擴展模塊添加到Apache的module文件。 --with-config-file-path=/usr/local/php/etc 指定配置文件所在路徑 --with-mysql=/usr/local/mysql 指定mysql的路徑 --with-mysqli=/usr/local/mysql/bin/mysql_config --with-pdo-mysql=/usr/local/mysql --with-mysqli=/usr/local/mysql/bin/mysql_config 上面兩項參數是指定相關mysql庫! --with-libxml-dir --with-gd --with-jpeg-dir --with-png-dir --with-freetype-dir --with-iconv-dir --with-zlib-dir --with-bz2 --with-openssl --with-mcrypt --enable-soap --enable-gd-native-ttf --enable-mbstring --enable-sockets --enable-exif 以上參數是指定PHP相關的一些模塊(通用)。
報錯:
錯誤1:mysql
configure: error: xml2-config not found. Please check your libxml2 installation. 說明:缺乏xml2庫。
解決辦法:sql
查找相關的庫安裝包: [root@1 php-5.6.30]# yum list |grep libxml2 安裝庫文件: [root@1 php-5.6.30]# yum install -y libxml2-devel
錯誤2:apache
configure: error: Cannot find OpenSSL's <evp.h> 說明:缺乏OpenSSL's。
解決辦法:vim
[root@1 php-5.6.30]# yum install -y openssl-devel
錯誤3:服務器
configure: error: Please reinstall the BZip2 distribution 說明:從新安裝BZip2。
解決辦法:php7
[root@1 php-5.6.30]# yum install -y bzip2-devel
錯誤4:socket
configure: error: jpeglib.h not found. 說明:缺乏jpeg庫。
解決辦法:工具
[root@1 php-5.6.30]# yum install -y libjpeg-devel
錯誤5:ui
configure: error: png.h not found. 說明:缺乏png庫。
解決辦法:
[root@1 php-5.6.30]# yum install -y libpng-devel
錯誤6:
configure: error: freetype-config not found. 說明:缺乏freetype庫。
解決辦法:
[root@1 php-5.6.30]# yum install -y freetype-devel
錯誤7:
configure: error: mcrypt.h not found. Please reinstall libmcrypt. 說明:缺乏mcrypt庫。
解決辦法:
[root@1 php-5.6.30]# yum install -y libmcrypt-devel
+--------------------------------------------------------------------+ | License: | | This software is subject to the PHP License, available in this | | distribution in the file LICENSE. By continuing this installation | | process, you are bound by the terms of this license agreement. | | If you do not agree with the terms of this license, you must abort | | the installation process at this point. | +--------------------------------------------------------------------+ Thank you for using PHP.
環境配置完成!
編譯: [root@1 php-5.6.30]# make [root@1 php-5.6.30]# echo $? 0 安裝: [root@1 php-5.6.30]# make install [root@1 php-5.6.30]# echo $? 0
安裝完成!
將PHP的配置文件移動到./configure時指定的目錄:
[root@1 php-5.6.30]# cp php.ini-production /usr/local/php/etc/php.ini
PHP在系統中是做爲Apache的一個模塊被調用的,因此不用執行名啓動該PHP。
查看Apache的模塊:
# /usr/local/apache2.4/bin/apachectl -M ……dir_module (shared) alias_module (shared) php5_module (shared)
說明: 安裝完成PHP後會在Apache中自動添加相應模塊,同時在Apache配置文件/usr/local/apache2.4/conf/httpd.conf中也會自動添加相應配置內容。
[root@1 php-5.6.30]# vim /usr/local/apache2.4/conf/httpd.conf
下載: [root@1 src]# wget http://cn2.php.net/distributions/php-7.1.6.tar.bz2 解壓: [root@1 src]# tar -jxvf php-7.1.6.tar.bz2
由於在安裝PHP5的時候全部依賴的庫文件以及安裝完,因此這次PHP7能夠直接安裝。
切換到目錄php-7.1.6:
[root@1 src]# cd php-7.1.6
[root@1 src]# ./configure --prefix=/usr/local/php7 --with-apxs2=/usr/local/apache2.4/bin/apxs --with-config-file-path=/usr/local/php7/etc --with-pdo-mysql=/usr/local/mysql --with-mysqli=/usr/local/mysql/bin/mysql_config --with-libxml-dir --with-gd --with-jpeg-dir --with-png-dir --with-freetype-dir --with-iconv-dir --with-zlib-dir --with-bz2 --with-openssl --with-mcrypt --enable-soap --enable-gd-native-ttf --enable-mbstring --enable-sockets --enable-exif 注:次數與PHP-5的主要差別就是沒有「--with-mysql」選項。
[root@1 php-7.1.6]# make
注:編譯完成後能夠使用「echo $?」或「make test」命令檢測編譯是否存在錯誤。
[root@1 php-7.1.6]# make install
將PHP的配置文件移動到./configure時指定的目錄:
[root@1 php-5.6.30]# cp php.ini-production /usr/local/php/etc/php.ini
查看Apache加載的PHP模塊:
[root@1 php-7.1.6]# /usr/local/apache2.4/bin/apachectl -M …… php5_module (shared) php7_module (shared)
此時Apache默認加載兩個PHP模塊,那麼爲了正常使用須要經過編輯Apache的配置文件來指定其工做時默認調用哪一個PHP模塊(註釋掉其中一個調用參數便可):
[root@1 php-7.1.6]# vim /usr/local/apache2.4/conf/httpd.conf