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

使用說明:
//載入函數
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
超越炒作:評估當今PHP的角色超越炒作:評估當今PHP的角色Apr 12, 2025 am 12:17 AM

PHP在現代編程中仍然是一個強大且廣泛使用的工具,尤其在web開發領域。 1)PHP易用且與數據庫集成無縫,是許多開發者的首選。 2)它支持動態內容生成和麵向對象編程,適合快速創建和維護網站。 3)PHP的性能可以通過緩存和優化數據庫查詢來提升,其廣泛的社區和豐富生態系統使其在當今技術棧中仍具重要地位。

PHP中的弱參考是什麼?什麼時候有用?PHP中的弱參考是什麼?什麼時候有用?Apr 12, 2025 am 12:13 AM

在PHP中,弱引用是通過WeakReference類實現的,不會阻止垃圾回收器回收對象。弱引用適用於緩存系統和事件監聽器等場景,需注意其不能保證對象存活,且垃圾回收可能延遲。

解釋PHP中的__ Invoke Magic方法。解釋PHP中的__ Invoke Magic方法。Apr 12, 2025 am 12:07 AM

\_\_invoke方法允許對象像函數一樣被調用。 1.定義\_\_invoke方法使對象可被調用。 2.使用$obj(...)語法時,PHP會執行\_\_invoke方法。 3.適用於日誌記錄和計算器等場景,提高代碼靈活性和可讀性。

解釋PHP 8.1中的纖維以進行並發。解釋PHP 8.1中的纖維以進行並發。Apr 12, 2025 am 12:05 AM

Fibers在PHP8.1中引入,提升了並發處理能力。 1)Fibers是一種輕量級的並發模型,類似於協程。 2)它們允許開發者手動控制任務的執行流,適合處理I/O密集型任務。 3)使用Fibers可以編寫更高效、響應性更強的代碼。

PHP社區:資源,支持和發展PHP社區:資源,支持和發展Apr 12, 2025 am 12:04 AM

PHP社區提供了豐富的資源和支持,幫助開發者成長。 1)資源包括官方文檔、教程、博客和開源項目如Laravel和Symfony。 2)支持可以通過StackOverflow、Reddit和Slack頻道獲得。 3)開發動態可以通過關注RFC了解。 4)融入社區可以通過積極參與、貢獻代碼和學習分享來實現。

PHP與Python:了解差異PHP與Python:了解差異Apr 11, 2025 am 12:15 AM

PHP和Python各有優勢,選擇應基於項目需求。 1.PHP適合web開發,語法簡單,執行效率高。 2.Python適用於數據科學和機器學習,語法簡潔,庫豐富。

php:死亡還是簡單地適應?php:死亡還是簡單地適應?Apr 11, 2025 am 12:13 AM

PHP不是在消亡,而是在不斷適應和進化。 1)PHP從1994年起經歷多次版本迭代,適應新技術趨勢。 2)目前廣泛應用於電子商務、內容管理系統等領域。 3)PHP8引入JIT編譯器等功能,提升性能和現代化。 4)使用OPcache和遵循PSR-12標準可優化性能和代碼質量。

PHP的未來:改編和創新PHP的未來:改編和創新Apr 11, 2025 am 12:01 AM

PHP的未來將通過適應新技術趨勢和引入創新特性來實現:1)適應云計算、容器化和微服務架構,支持Docker和Kubernetes;2)引入JIT編譯器和枚舉類型,提升性能和數據處理效率;3)持續優化性能和推廣最佳實踐。

See all articles

熱AI工具

Undresser.AI Undress

Undresser.AI Undress

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

AI Clothes Remover

AI Clothes Remover

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

Undress AI Tool

Undress AI Tool

免費脫衣圖片

Clothoff.io

Clothoff.io

AI脫衣器

AI Hentai Generator

AI Hentai Generator

免費產生 AI 無盡。

熱門文章

R.E.P.O.能量晶體解釋及其做什麼(黃色晶體)
3 週前By尊渡假赌尊渡假赌尊渡假赌
R.E.P.O.最佳圖形設置
3 週前By尊渡假赌尊渡假赌尊渡假赌
R.E.P.O.如果您聽不到任何人,如何修復音頻
3 週前By尊渡假赌尊渡假赌尊渡假赌
WWE 2K25:如何解鎖Myrise中的所有內容
4 週前By尊渡假赌尊渡假赌尊渡假赌

熱工具

禪工作室 13.0.1

禪工作室 13.0.1

強大的PHP整合開發環境

WebStorm Mac版

WebStorm Mac版

好用的JavaScript開發工具

MantisBT

MantisBT

Mantis是一個易於部署的基於Web的缺陷追蹤工具,用於幫助產品缺陷追蹤。它需要PHP、MySQL和一個Web伺服器。請查看我們的演示和託管服務。

SublimeText3 Linux新版

SublimeText3 Linux新版

SublimeText3 Linux最新版

記事本++7.3.1

記事本++7.3.1

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