首頁 後端開發 php教程 createcompatibledc 使用bcompiler對PHP檔案進行加密的程式碼

createcompatibledc 使用bcompiler對PHP檔案進行加密的程式碼

Jul 29, 2016 am 08:43 AM

使用說明:
//載入函數
include_once('phpCodeZip.php');
//建立加密檔案(sourceDir要加密的php檔案目錄,targetDir加密後的檔案目錄)
$encryption = new PhoCodeZip('sourceDir','targetDir');
//執行行加密
$encryption->zip();
phpCodeZip.php來源碼下載
phpCodeZip.php phpCodeZip.php原始碼內容

複製程式碼 程式碼如下:


/*
* @license:MIT & GPL
*/
class PhpCodeZip{
//欲進行壓縮加密的來源資料夾
var $sourceDir = ' .';
//進行壓縮加密的存放的資料夾
var $targetDir = 'tmp';
//是否進行加密
var $bcompiler = true;
//是否移除空白註解斷行
var $strip = true;
//來源資料夾檔案路徑陣列
var $sourcefilePaths = array();
//目的資料夾檔案路徑陣列
var $targetPaths = array();
//進行壓縮加密前的資料夾大小
var $sizeBeforeZip = null;
//進行壓縮加密後的資料夾大小
var $sizeAfterZip = null ;
//斷行的輸出
var $newline = '';
/**
* 建構子
*
* @param string $sourceDir 來源資料夾
* @param string $targetDir 目的資料夾
* @param boolean $bcompiler 是否進行加密
@param boolean $strip 是否會移除空白註解斷行
* @return boolean
*/
public function PhpCodeZip($sourceDir='.',$targetDir=' tmp' ,$bcompiler=true,$strip=true){
//配置初始變數
$this->sourceDir = $sourceDir;
$this->targetDir = $targetDir;
$this- >bcompiler = $bcompiler;
//檢查來源資料是否存在
if(!is_dir($this->sourceDir)){
die('指定的來源資料夾' .$this->sourceDir .'不存在,請重新設定');
} else {
//如果指定的目的資料夾存在,砍掉重練
if(is_dir($this ->targetDir)){
echo '【初始化目的地資料夾】'.$this->newline.$this->newline;
$this->cleanDir($this-> targetDir,true);
}
//建立與來源資料夾結構一樣的目的資料夾
mkdir($this->targetDir,0777);
$dir_paths = $this-> ;getPaths($this->sourceDir,'*' ,GLOB_ONLYDIR);
foreach($dir_paths as $key => $path){
$path = explode('/',$path);
$path[0] = $this->targetDir ;
echo '=> '.join('/',$path).$this->newline;
mkdir(join( '/',$path),0777);
}
//取得來源資料夾的檔案路徑清單
$this->sourcefilePaths = $this->getPaths($this-> sourceDir,'*');
//配對應目的地的檔案路徑清單
foreach($this->sourcefilePaths as $key => $path){
//設定目的資料夾檔案路徑
$path = explode('/',$path);
$path[0] = $this->targetDir;
$this->targetPaths[$key] = join( '/',$path);
}
//記錄執行前的資料夾大小
$this->sizeBeforeZip = $this->getSizeUnit($this->getDirSize($this ->sourceDir),2);
echo $this->newline.$this->newline;
}
}
/**
* 進行壓縮加密
* @return boolean
*/
public function zip(){
$this->newline = '';
echo '【開始進行加密程式】(資料夾大小:'.$this->sizeBeforeZip.')'.$this- >newline.$this->newline;
//將來源檔案壓縮
foreach($this->sourcefilePaths as $ key => $path){
if(is_file($ path)){
//取得檔案資訊
$pathInfo = pathInfo($path);
echo '讀取來源檔:' .$path.$this->newline;
/ /取得壓縮後的內容
echo '=>去除空白註解..........';
if($this- >strip && $pathInfo['extension'] == 'php'){
$fileAterZip = php_strip_whitespace($path);
} else {
$fileAterZip = file_get_contents($path); }
echo '完畢'.$this- >newline;
//取壓縮後的內容寫到目的位置
$fp = fopen($this->targetPaths[$key],'w+' );
echo '=>寫入目的檔..........';
fwrite($fp,$fileAterZip);
fclose($fp);
echo '完成'.$this-> newline;
//如果選擇加密
if($this->bcompiler && $pathInfo['extension'] == 'php'){
echo ' =>加密原始檔. .........';
//複製原始檔
$fh = fopen($this->targetPaths[$key].'encrypt.php', " w");
bcompiler_write_header($fh);
bcompiler_write_file($fh, $this->targetPaths[$key]);
bcompiler_write_footer($fh);
fclose($fclose); / /刪除未加密的原始檔
unlink($this->targetPaths[$key]);
//重新命名加密過後的檔案
rename($this->targetPaths[$ key] .'encrypt.php',$this->targetPaths[$key]);
echo '完成'.$this->newline;
}
echo $this->newline.$ this ->newline;
}
}
//重新計算壓縮加密後的資料夾大小
$this->sizeAfterZip = $this->getSizeUnit($this->getDirSize($this->targetDir),2);
echo ' 【結束加密程式】'.$this->newline.$this->newline;
echo '《報告資訊》'.$this->newline;
echo '來源資料夾:'.$this- >sourceDir.'('.$this->sizeBeforeZip.')'.$this->newline;
echo '目的資料夾:'.$this->targetDir .'('.$this->sizeAfterZip. ')'.$this->newline;
echo '檔案大小增幅:+'.$this->getSizeUnit(($this->getDirSize( $this->targetDir) - $this->getDirSize($this ->sourceDir))).$this->newline;
echo '檔案總數:'.count($this->sourcefilePaths ).'個'.$this->newline;
}
/ **
* 刪除目錄夾所有檔案
*
* @param string $dir 欲刪除的資料夾
* @param boolean $deleteSelf 同時刪除資料夾
* @return void
*/
private function cleanDir($dir='.',$deleteSelf=true){
if(!$dh = @opendir($dir)) return;
while ( ($obj = readdir($dh))) {
if($obj=='.' || $obj= ='..') continue;
if (!@unlink($dir.' /'.$obj)) $this->cleanDir($dir.'/'.$obj, true);
}
if ($deleteSelf){
closedir($dh);
@rmdir($dir);
}
}
/**
* 取得資料夾的總檔案大小
*
* @param string $dir 欲剖析的資料夾
* @return int 位元組
*/
private function getDirSize($dir='.'){
//取得檔案路徑清單
$filePaths = $this->getPaths($dir,'*');
//初始化計數器
$sizeCounter = 0;
foreach($filePaths as $key => $path ){
$sizeCounter = $sizeCounter + filesize($path);
}
return ( $sizeCounter);
}
/**
* 取得資料夾所有配對的路徑
*
* @param string $start_dir 欲剖析的資料夾
* @return array 檔案路徑陣列
*/
private function getPaths($sDir, $sPattern, $nFlags = NULL){
$sDir = escapeshellcmd($sDir);
$aFiles = glob("$sDir/$sPattern", $nFlags);
for
foreach (glob("$sDir/*", GLOB_ONLYDIR) as $sSubDir) {
$aSubFiles = $this- >getPaths($sSubDir, $sPattern, $nFlags);
$aFiles = arrayFile_$a, $nFlags 是$aSubFiles);
}
return $aFiles;
}
/**
* 檔案大小單位轉換函數
*
* @param int 檔案大小
* @param int 小數點位數
* @param boolean 是否要將資料切成陣列
* @return mix 字串或陣列
*/
public function getSizeUnit($size,$decimal=2,$split=false) {
//設定單位序列
$unit = array('Bytes','KB', 'MB','GB','TB','PB','EB','ZB', 'YB');
//初始化索引
$flag = 0;
//進行簡化除算
while($size >= 1024){
$size = $size / 1024 ;
$flag++;
}
//是否要將數值與單位分開
if($split){
$sizeUnit = array(
'size' => number_format( $size,$decimal),
'unit' => $unit[$flag]
);
} else {
$sizeUnit = (number_format($size,$decimal)).$ unit[$flag];
}
//回傳大小與單位
return ($sizeUnit);
}
}

以上就介紹了createcompatibledc 使用bcompiler對PHP檔案進行加密的程式碼,包括了createcompatibledc方面的內容,希望對PHP教學有興趣的朋友有所幫助。

本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn

熱AI工具

Undresser.AI Undress

Undresser.AI Undress

人工智慧驅動的應用程序,用於創建逼真的裸體照片

AI Clothes Remover

AI Clothes Remover

用於從照片中去除衣服的線上人工智慧工具。

Undress AI Tool

Undress AI Tool

免費脫衣圖片

Clothoff.io

Clothoff.io

AI脫衣器

Video Face Swap

Video Face Swap

使用我們完全免費的人工智慧換臉工具,輕鬆在任何影片中換臉!

熱工具

記事本++7.3.1

記事本++7.3.1

好用且免費的程式碼編輯器

SublimeText3漢化版

SublimeText3漢化版

中文版,非常好用

禪工作室 13.0.1

禪工作室 13.0.1

強大的PHP整合開發環境

Dreamweaver CS6

Dreamweaver CS6

視覺化網頁開發工具

SublimeText3 Mac版

SublimeText3 Mac版

神級程式碼編輯軟體(SublimeText3)

在PHP API中說明JSON Web令牌(JWT)及其用例。 在PHP API中說明JSON Web令牌(JWT)及其用例。 Apr 05, 2025 am 12:04 AM

JWT是一種基於JSON的開放標準,用於在各方之間安全地傳輸信息,主要用於身份驗證和信息交換。 1.JWT由Header、Payload和Signature三部分組成。 2.JWT的工作原理包括生成JWT、驗證JWT和解析Payload三個步驟。 3.在PHP中使用JWT進行身份驗證時,可以生成和驗證JWT,並在高級用法中包含用戶角色和權限信息。 4.常見錯誤包括簽名驗證失敗、令牌過期和Payload過大,調試技巧包括使用調試工具和日誌記錄。 5.性能優化和最佳實踐包括使用合適的簽名算法、合理設置有效期、

會話如何劫持工作,如何在PHP中減輕它? 會話如何劫持工作,如何在PHP中減輕它? Apr 06, 2025 am 12:02 AM

會話劫持可以通過以下步驟實現:1.獲取會話ID,2.使用會話ID,3.保持會話活躍。在PHP中防範會話劫持的方法包括:1.使用session_regenerate_id()函數重新生成會話ID,2.通過數據庫存儲會話數據,3.確保所有會話數據通過HTTPS傳輸。

描述紮實的原則及其如何應用於PHP的開發。 描述紮實的原則及其如何應用於PHP的開發。 Apr 03, 2025 am 12:04 AM

SOLID原則在PHP開發中的應用包括:1.單一職責原則(SRP):每個類只負責一個功能。 2.開閉原則(OCP):通過擴展而非修改實現變化。 3.里氏替換原則(LSP):子類可替換基類而不影響程序正確性。 4.接口隔離原則(ISP):使用細粒度接口避免依賴不使用的方法。 5.依賴倒置原則(DIP):高低層次模塊都依賴於抽象,通過依賴注入實現。

在PHPStorm中如何進行CLI模式的調試? 在PHPStorm中如何進行CLI模式的調試? Apr 01, 2025 pm 02:57 PM

在PHPStorm中如何進行CLI模式的調試?在使用PHPStorm進行開發時,有時我們需要在命令行界面(CLI)模式下調試PHP�...

如何在系統重啟後自動設置unixsocket的權限? 如何在系統重啟後自動設置unixsocket的權限? Mar 31, 2025 pm 11:54 PM

如何在系統重啟後自動設置unixsocket的權限每次系統重啟後,我們都需要執行以下命令來修改unixsocket的權限:sudo...

框架安全功能:防止漏洞。 框架安全功能:防止漏洞。 Mar 28, 2025 pm 05:11 PM

文章討論了框架中的基本安全功能,以防止漏洞,包括輸入驗證,身份驗證和常規更新。

解釋PHP中的晚期靜態綁定(靜態::)。 解釋PHP中的晚期靜態綁定(靜態::)。 Apr 03, 2025 am 12:04 AM

靜態綁定(static::)在PHP中實現晚期靜態綁定(LSB),允許在靜態上下文中引用調用類而非定義類。 1)解析過程在運行時進行,2)在繼承關係中向上查找調用類,3)可能帶來性能開銷。

See all articles