安装zend guard
PHP5.4 Zend支持组件Zend Guard Loader (Runtime for PHP 5.4) 发布,安装教程
PHP5.4发布至今一年多,但Zend组件(Zend Optimizer / Zend Guard Loader)却一直不支持,很多像我一样升级了PHP5.4的朋友跟我一样郁闷过吧,以前貌似只能重新配置PHP。。。像我这种用LNMP之类套件的貌 似只能全部重新搭建生产环境吧。
最近Zend发布了Zend Guard Loader (Runtime for PHP 5.4),在PHP5.5(官方说自带支持Zend Optimizer)出来之前,我们可以很简单的有Zend组件支持PHP5.4啦,好激动啊,不纠结了,上教程:
1.下载Zend Guard Loader (Runtime for PHP 5.4)
根据32位或64位选择对应的系统版本,官方下载地址:http://www.zend.com/en/products/guard/downloads
下载需要注册Zend网站的,懒得注册的直接在我这下载就可以咯:
Zend Guard Loader (Runtime for PHP 5.4)(32 bit) (379.9 KiB)
Zend Guard Loader (Runtime for PHP 5.4)(64 bit) (416.3 KiB)
2.安装 Zend Guard Loader
解压后将 ZendGuardLoader.so 上传到服务器 /usr/local/zend/ 目录,我的LNMP自带的有原先的PHP5.3版本的组件,替换即可;
3.配置 Zend Guard Loader
编辑php.ini(/usr/local/php/etc )文件,在最后位置添加以下内容:
[Zend Guard]
zend_extension=/usr/local/zend/ZendGuardLoader.so
; Enables loading encoded scripts. The default value is On
zend_loader.enable=1
; Optional: following lines can be added your php.ini file for ZendGuardLoader configuration
zend_loader.disable_licensing=0
zend_loader.obfuscation_level_support=3
zend_loader.license_path=
4.重启
/root/lnmp restart
至此,Zend Guard Loader (Runtime for PHP 5.4)安装完成,我们可以在 phpinfo 和 探针 看到如下成功安装信息。
本文固定链接: http://www.cuijinlin.com/2013/05/zend-guard-loader-runtime-for-php-5-4.html | 崔金林的博客