|
//载入函式
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;
//取 後的 容 到目的位置
$fp = fopen($this->targetPaths[$key],'w+');
echo '=>