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执行感觉快多啦!