參考連接: http://blog.coinidea.com/web%E5%BC%80%E5%8F%91/php-1103.htmlphp
官方下載地址:http://www.zend.com/en/products/guard/downloads#Windowshtml
下載以前須要註冊,我下的版本是Zend Guard 6.0。雙擊運行便可傻瓜式安裝。web
最新的版本是7.0,若是想下載早期的版本,請點擊:>Download here,當前頁面下方會彈出早期版本的列表。shell
[圖片上傳中...(image-3bbff-1535337238770-1)]windows
官方下載地址:http://php.net/downloads.php | http://php.net/releases/安全
我如今的版本是:http://windows.php.net/download/#php-5.4app
php一個版本通常會發布兩種類型的程序,一種是線程安全的(Thread Safe),另外一種是非線程安全的(Non Thread Safe)。ide
值得注意的是:ZendGuard只支持非線程安全的。因此請選擇非線程安全的PHP下載。wordpress
1. 下載ZendLoader.dllui
官方下載地址:
http://www.zend.com/en/products/loader/downloads#Windows
下載以前請註冊,與ZendGuard下載類型,注意選擇對應PHP版本的ZendLoader。
將ZendLoader.dll拷貝到PHP
[PHP的根目錄]\ext\中。 2. 修改php.ini-development或者php.ini-production爲php.ini, 在php.ini文件中添加如下內容:
zend_extension="./ext/ZendLoader.dll" ; Enables loading encoded scripts. The default value is On zend_loader.enable=1 ; Disable license checks (for performance reasons) zend_loader.disable_licensing=0 ; The Obfuscation level supported by Zend Guard Loader. The levels are detailed in the official Zend Guard Documentation. 0 - no obfuscation is enabled zend_loader.obfuscation_level_support=3 ; Path to where licensed Zend products should look for the product license. For more information on how to create a license file, see the Zend Guard User Guide zend_loader.license_path=
新建PHP代碼 新建input文件夾,在input文件夾中新建test.php。
代碼以下:
<?php date_default_timezone_set("Asia/shanghai"); echo "Thanks ZendGuard!\n"; echo "Now datetime is ".date("Y-m-d h:i:s")."\n"; ?>
上述代碼輸出:
Thanks ZendGuard
Now datetime is 當前時間.
ZendGuard是傻瓜式安裝,安裝以後,運行起來,效果以下。
1. 新建Zend Guard Project工程。
2. 指定輸出文件爲output文件夾。
3. 添加輸入文件夾爲input文件夾。
4. 選擇PHP版本
6. output文件夾中新生成了test.php,打開看是亂碼。
運行源代碼效果:
運行加密代碼效果:
至此,就能夠用ZendGuard就能夠對PHP代碼進行加密。
參考連接: http://blog.coinidea.com/web%E5%BC%80%E5%8F%91/php-1103.html