一、解決依賴關係:
若是想讓編譯的php支持mcrypt擴展,須要下載以下兩個rpm包並安裝之:
libmcrypt-2.5.7-5.el5.i386.rpm
libmcrypt-devel-2.5.7-5.el5.i386.rpmphp
注:www.rpmfind.net
二、編譯安裝php-5.4.13
首先下載源碼包至本地目錄。html
# tar xf php-5.4.13.tar.bz2 # cd php-5.4.13 # ./configure --prefix=/usr/local/php --with-mysql=/usr/local/mysql --with-openssl --with-mysqli=/usr/local/mysql/bin/mysql_config --enable-mbstring --with-freetype-dir --with-jpeg-dir --with-png-dir --with-zlib --with-libxml-dir=/usr --enable-xml --enable-sockets --with-apxs2=/usr/local/apache/bin/apxs --with-mcrypt --with-config-file-path=/etc --with-config-file-scan-dir=/etc/php.d --with-bz2 --enable-maintainer-zts # make # make test # make intall
說明:
(一、這裏爲了支持apache的worker或event這兩個MPM,編譯時使用了--enable-maintainer-zts選項。
(二、若是使用PHP5.3以上版本,爲了連接MySQL數據庫,能夠指定mysqlnd,這樣在本機就不須要先安裝MySQL或MySQL開發包了。mysqlnd從php 5.3開始可用,能夠編譯時綁定到它(而不用和具體的MySQL客戶端庫綁定造成依賴),但從PHP 5.4開始它就是默認設置了。mysql
# ./configure --with-mysql=mysqlnd --with-pdo-mysql=mysqlnd --with-mysqli=mysqlnd
(三、--with-apxs2=/usr/local/apache/bin/apxs表示將php編譯爲httpd模塊,若是要要以fcgi模式與http結合需將此項替換爲--enable-fpm
sql
爲php提供配置文件:數據庫
# cp php.ini-production /etc/php.ini
三、 編輯apache配置文件httpd.conf,以apache支持php
apache
# vim /etc/httpd/httpd.conf
一、添加以下二行
AddType application/x-httpd-php .php
AddType application/x-httpd-php-source .phps
二、定位至DirectoryIndex index.html
修改成:
DirectoryIndex index.php index.html
然後從新啓動httpd,或讓其從新載入配置文件便可測試php是否已經能夠正常使用。
vim