Zend Guard Loader是一款全新支援PHP5.3的加速程式,如果你是使用PHP5.2以下版本,請使用Zend官方提供的Zend Optimizer版本進行加束,PHP5.3以上的版本不再支援Zend Optimizer,已經被全新的 Zend Guard Loader 所取代,下面風信網帶大家來瞭解Zend Guard Loader的安裝、配置,讓你輕鬆實現php程式的加速,趕緊動手吧!
1、下載Zend Guard
cd /home
wget HTTP://downloads.zend.com/guard/5.5.0/ZendGuardLoader-php-5.3-linux-glibc23-i386.tar.gz #32位
wget HTTP://downloads.zend.com/guard/5.5.0/ZendGuardLoader-php-5.3-linux-glibc23-x86_64.tar.gz #64位
2、安裝Zend Guard
mkdir /usr/zend #建立Zend Optimizer安裝目錄
tar xvfz ZendGuardLoader-php-5.3-linux-glibc23-i386.tar.gz #解壓安裝檔
cp ZendGuardLoader-php-5.3-linux-glibc23-i386/php5.3.x/ZendGuardLoader.so /usr/zend/ #拷貝檔到安裝目錄
rm -rf /home/ZendGuardLoader-php-5.3-linux-glibc23-i386* #刪除安裝包
3、配置Zend Guard
cp /etc/php.ini /etc/php.inibak #修改之前先備份
vi /etc/php.ini #編輯檔
在最後位置添加以下內容
[Zend Guard]
zend_extension=/usr/zend/ZendGuardLoader.so
zend_loader.enable=1
zend_loader.disable_licensing=0
zend_loader.obfuscation_level_support=3
zend_loader.license_path=
4、重啟web伺服器
/etc/init.d/HTTPd restart
測試一下網站是不是php執行感覺快多啦!