欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Windows下的PHP 5.3.x安装 Zend Guard Loader教程

程序员文章站 2023-11-11 21:32:34
从php5.3开始如果要支持zendguard加密的php代码,必须安装zend guard loader,老的zend optimizer将不被支持。另外,zend gu...

从php5.3开始如果要支持zendguard加密的php代码,必须安装zend guard loader,老的zend optimizer将不被支持。另外,zend guard loader 仅支持 non thread safe 版本的php。

下载扩展:

安装扩展:

在php.ini中追加:

复制代码 代码如下:

[zend.loader]
zend_extension='d:/program files/php-5.3.29/zendloader.dll'
zend_loader.enable=1
zend_loader.disable_licensing=1
zend_loader.obfuscation_level_support=3
zend_loader.license_path=

重启web服务器(iis/nginx)
 
运行phpinfo(),会看到如下信息:

复制代码 代码如下:

this program makes use of the zend scripting language engine:
zend engine v2.3.0, copyright (c) 1998-2013 zend technologies
    with zend guard loader v3.3, copyright (c) 1998-2010, by zend technologies