CentOS 7 安装和配置 Zend Guard Loader

CentOS 7 安装和配置 Zend Guard Loader

本教程适用于CentOS 6、CentOS 7系统,PHP 5.3、PHP 5.4的版本。


第一步、下载CentOS下适用于 PHP 5.3/5.4 的 ZendGuardLoader 文件。

32 位下载:ZendGuardLoader-70429-PHP-5.4-linux-glibc23-i386.tar.gz
64 位下载:ZendGuardLoader-70429-PHP-5.4-linux-glibc23-x86_64.tar.gz

下载地址:http://www.zend.com/en/products/loader/downloads


第二步、解压出ZendGuardLoader.so,打开php.ini在文件末尾加入(修改)以下配置。

zend_extension=/path/to/zend/ZendGuardLoader.so
zend_loader.enable=1
zend_loader.disable_licensing=0
zend_loader.obfuscation_level_support=3
zend_loader.license_path=

显然,这里的“/path/to/zend/ZendGuardLoader.so”要改成你放置ZendGuardLoader.so的绝对路径。


第三步、重启web服务器如apache。

systemctl restart httpd

在你的phpinfo()页面中看到以下信息表明安装成功。

ZendGuardLoader安装和配置成功



2