在 Zend 官网上找到 Zend Guard Loader 的下载页, 找到 Linux 版本的 Zend Guard Loader, 点击下载, 需要登录, 登录后会弹出下载提示, 开始下载, 复制实际下载地址, 用 wget 下载.
1 2 |
yum install wget wget http://downloads.zend.com/guard/6.0.0/ZendGuardLoader-70429-PHP-5.4-linux-glibc23-i386.tar.gz |
解压下载的文件
1 |
tar zxvf ZendGuardLoader-70429-PHP-5.4-linux-glibc23-i386.tar.gz |
进入 ZendGuardLoader 目录, 查看 README 文档, 按照说明进行安装.
1 2 |
cd ZendGuardLoader-php-5.4-linux-glibc23-i386 cat README.txt |
开始安装
复制 php-5.4.x 文件夹下的 ZendGuardLoader.so 到 /usr/lib/httpd/modules 目录或 /etc/httpd/modules 目录, 这两个目录其实是同一个位置.
1 |
cp ZendGuardLoader.so /usr/lib/httpd/modules |
编辑 php配置文件.
1 |
vi /etc/php.ini |
在 php.ini 文件末尾添加几行配置项.
1 2 3 4 |
zend_extension=/usr/lib/httpd/modules/ZendGuardLoader.so zend_loader.enable=1 zend_loader.disable_licensing=0 zend_loader.obfuscation_level_support=3 |
重启 Apache 或 Nginx
1 2 3 4 |
service httpd restart service nginx restart service php-fpm restart |
用浏览器打开 phpinfo.php 页面, 在 php 项最下面看到如图所示即完装成功.