사용 지침:
//함수 로드
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
*/
공개 함수 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 =explore('/',$path);
$path[0] = $this->targetDir;
echo '=> '.join('/',$path).$this->newline(join( ' /',$path),0777);
}
//소스 폴더의 파일 경로 목록 가져오기
$this->sourcefilePaths = $this->getPaths($this-> ; sourceDir ,'*');
//해당 대상의 파일 경로 목록을 일치시킵니다.
foreach($this->sourcefilePaths as $key => $path){
// 대상 폴더 파일 경로
$path =explore('/',$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
/ /Get the 압축된 콘텐츠
echo '=>빈 주석 제거.....'
if($this->strip && $pathInfo['extension'] == 'php'){
$ fileAterZip = php_strip_whitespace($path);
} else {
$fileAterZip = file_get_contents($path);
}
echo 'Finished'.$this- >newline; 압축된 내용을 가져와서 대상 위치에 씁니다
$fp = fopen($this->targetPaths[$key],'w ')
echo '=> ';
fwrite($fp,$fileAterZip);
fclose($fp)
echo 'Complete'.$this->//암호화 여부
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($fh)
/ /암호화되지 않은 원본 파일 삭제
unlink($ this->targetPaths[$key])
//암호화된 파일 이름 바꾸기
rename($this->targetPaths[$key] .'encrypt.php',$this->targetPaths[$ key]);
echo 'Finished'.$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) . 'piece'.$this->newline
}
/**
* 해당 디렉터리의 모든 파일 삭제
*
* @param string $dir 삭제할 폴더
* @param boolean $deleteSelf 폴더 동시 삭제
* @return 무효
*/
비공개 함수 cleanDir($dir='.',$deleteSelf=true){
if (!$dh = @opendir($dir)) return;
while (($obj = readdir($dh))) {
if($obj=='.' || $obj== ' ..') 계속;
if (!@unlink($dir.'/'.$obj)) $this->cleanDir($dir.'/'.$obj, true)
}
if ($deleteSelf){
closedir($dh);
@rmdir($dir)
}
}
/**
* 폴더의 전체 파일 크기 가져오기
*
* @param string $dir 분석할 폴더
* @return int byte
*/
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 파일 경로 배열
*/
비공개 함수 getPaths($sDir, $sPattern, $nFlags = NULL){
$sDir = escapeshellcmd($sDir); $aFiles = glob("$sDir/$sPattern", $nFlags);
foreach (glob("$sDir/*", GLOB_ONLYDIR) as $sSubDir) {
$aSubFiles = $this-> ($sSubDir, $sPattern, $nFlags);
$aFiles = array_merge($aFiles, $aSubFiles);
}
return $aFiles; */
공용 함수 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 = 배열(
'size' => number_format($size,$decimal),
'unit' => $unit[$flag]
) ;
} else {
$sizeUnit = (number_format($size,$decimal)).$unit[$flag]
}
//크기 및 단위 반환
return ( $ 크기 단위)
}
}
위 내용은 create Compatibledc의 내용을 포함하여 bcompiler를 사용하여 PHP 파일을 암호화하기 위한 create Compatibledc용 코드를 소개하고 있습니다. PHP 튜토리얼에 관심이 있는 친구들에게 도움이 되길 바랍니다.