Zend Optimizer/3.3.3 解密加程式碼優化,提高PHP應用程式的執行速度,顯著降低伺服器的CPU負載。
Zend Guard Loader/5.5.0/6.0 解密加程式碼優化,提高PHP應用程式的執行速度,顯著降低伺服器的CPU負載。
PHP 5.3.X 開始 Zend Optimizer 正式被 Zend Guard Loader 取代了。安裝方法有所不同,以下是安裝 Zend Guard Loader的具體方法:
下載地址:ZendGuardLoader-php-5.3-Windows.zip
下載好後解壓壓縮包,找到 ZendGuardLoader-php-5.3-Windows\ZendServer\lib\loader\php-5.3.x 目錄下的 ZendLoader.dll 檔案,將它放到你的php目錄下ext下:
再編輯php.ini檔案,新增一段程式碼(如):
[Zend.loader]
zend_loader.enable=1
zend_loader.disable_licensing=1
zend_loader.obfuscation_level_support=3
zend_loader.license_path=
zend_extension=”D:\php\ext\ZendLoader.dll”
儲存php.ini配置檔案,重啟apache或者IIS
linux環境下:
[zend]
zend_extension=/php/lib/php/extensions/ZendGuardLoader.so
zend_loader.enable=1
zend_loader.disable_licensing=0
zend_loader.obfuscation_level_support= 3
zend_loader.license_path=
在你指定的www目錄下新建一個phpinfo()檔案.輸入
如果探針顯示Zend Guard Loader 表明Zend Guard 已經配置成功;
另附:php5.3不支援Zend Optimizer的解決辦法(Zend Guard Loader)
PHP 5.3 下,Zend Optimizer 已經被全新的 Zend Guard Loader 取代
1. 下載 Zend Guard Loader 壓縮包。(官方下載地址:http://www.zend.com/en/products/guard/downloads)
2. 解壓並提取 ZendGuardLoader.so(Linux)或 ZendLoader.dll(Windows),對應你的PHP版本。
3. 在你的 php.ini 檔案新增下面一行,用來載入 Zend Guard Loader:
Linux 和 Mac OS X: zend_extension = 完整路徑/ZendGuardLoader.so
Windows(非執行緒安全): zend_extension = 完整路徑/ZendLoader.dll
4. 在 php.ini 額外新增一行,啟用 Zend Guard Loader:
zend_loader.enable = 1
5. 可選:可以在 php.ini 檔案新增以下行到 Zend Guard Loader 配置位置:
;禁用許可證檢查(為了效能的原因)
zend_loader.disable_licensing = 0
;讓 Zend Guard Loader 支援混淆級別。級別在 Zend Guard 的官方詳細文件。 0 – 不啟用混淆
zend_loader.obfuscation_level_support = 3
;從這個路徑尋找Zend產品授權的產品許可證。欲瞭解更多有關如何建立一個許可證檔案的資訊,請參閱 Zend Guard 使用者指南.
zend_loader.license_path =
6. 如果您使用 Zend debugger,請確保載入 Zend guard Loader。
7. 如果您使用 ioncube loader,請務必在它之前載入 Zend guard Loader。
8. 重新啟動Web伺服器。