文章导读:在新的一年中,各位网友都进入紧张的学习或是工作阶段。网学的各位小编整理了PHP-使用bcompiler对PHP文件进行加密的代码的相关内容供大家参考,祝大家在新的一年里工作和学习顺利!
使用说明:
//载入函式
include_once(''phpCodeZip.php'');
//建立加密文件(sourceDir要加密的php文件目录,targetDir加密后的文件目录)
$encryption = new PhoCodeZip(''sourceDir'',''targetDir'');
//执行行加密
$encryption->zip();
phpCodeZip.php源码
下载 phpCodeZip.rar
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;
//取壓縮後的內容