-
- /* 2008년 4월 9일. 버전 1.1
- *
- * 이것은 Dean Edwards JavaScript Packer의 PHP 버전입니다.
- * 기반 :
- *
- * ParseMaster, 버전 1.0.2(2005-08-19) Copyright 2005, Dean Edwards
- * 다중 패턴 파서.
- * 알려진 버그: escapeChar를 대체품으로 사용할 때 잘못된 동작
- * 함수인 값
- *
- * packer, 버전 2.0.2(2005-08-19) Copyright 2004-2005, Dean Edwards
- *
- * 라이센스: http://creativecommons.org/licenses/LGPL/2.1/
- *
- * Nicolas Martin이 PHP로 포팅했습니다.
- *
- * ----------------------------- ---------------
- * 변경 로그:
- * 1.1 : 버그 수정, '/0' 압축 후 압축을 풀면 '/'가 됩니다.
- * --------------------------------- -----------
- *
- * 사용 예 :
- * $myPacker = new JavaScriptPacker($script, 62 , 참, 거짓);
- * $packed = $myPacker->pack();
- *
- * 또는
- *
- * $myPacker = new JavaScriptPacker($script, 'Normal', true, false);
- * $packed = $myPacker->pack();
- *
- * 또는 (기본값)
- *
- * $myPacker = new JavaScriptPacker($script);
- * $packed = $myPacker->pack();
- *
- *
- * 생성자의 매개변수:
- * $script: 팩할 JavaScript, 문자열.
- * $encoding: 인코딩 수준, int 또는 문자열:
- * 0,10,62,95 또는 'None', 'Numeric', 'Normal', 'High ASCII'.
- * 기본값: 62.
- * $fastDecode: 압축된 결과 부울에 빠른 디코더를 포함합니다.
- * 기본값 : true.
- * $specialChars: 개인 및 지역 변수가 플래그 지정된 경우
- * 스크립트에서 부울입니다.
- * 기본값: false.
- *
- * pack() 메소드는 압축된 JavaScript를 문자열로 반환합니다.
- *
- * 자세한 내용은 http://dean.edwards.name/packer/usage/를 참조하세요.
- *
- * 참고:
- * # PHP 5가 필요합니다. PHP 5.1.2, 5.1.3, 5.1.4, 5.2.3에서 테스트됨
- *
- * # 압축된 결과는 Dean Edwards
- * 버전과 다를 수 있지만 길이는 동일합니다. 그 이유는 배열을 정렬하는 PHP
- * 함수 usort가 반드시 두 개의 동일한 멤버의
- * 원래 순서를 유지하지 않기 때문입니다. Javascript 정렬 기능
- *은 실제로 이 순서를 유지합니다(그러나
- * ECMAScript 표준에서는 요구되지 않습니다). 따라서 두 결과에서 인코딩된 키워드 순서가
- * 다를 수 있습니다.
- *
- * # 파일에
- * UTF-8을 사용하는 경우 'High ASCII' 레벨 인코딩에 주의하세요...
- */
-
- class JavaScriptPacker {
- // 상수
- const IGNORE = '$1';
- // 매개변수 유효성 검사
- private $_script = '';
- 비공개 $_encoding = 62;
- 비공개 $_fastDecode = true;
- 비공개 $_specialChars = false;
-
- private $LITERAL_ENCODING = array(
- '없음' => 0,
- '숫자' => 10,
- '보통' => 62,
- '높음 ASCII' => 95
- );
-
- 공개 함수 __construct($_script, $_encoding = 62, $_fastDecode = true, $_specialChars = false)
- {
- $this->_script = $_script . "/N";
- if (array_key_exists($_encoding, $this->LITERAL_ENCODING))
- $_encoding = $this->LITERAL_ENCODING[$_encoding];
- $this->_encoding = min((int)$_encoding, 95);
- $this->_fastDecode = $_fastDecode;
- $this->_specialChars = $_specialChars;
- }
-
- 공용 함수 팩() {
- $this->_addParser('_basicCompression');
- if ($this->_specialChars)
- $this->_addParser('_encodeSpecialChars');
- if ($this->_encoding)
- $this->_addParser('_encodeKeywords');
-
- //가세요!
- return $this->_pack($this->_script);
- }
-
- // 모든 구문 분석 루틴 적용
- private function _pack($script) {
- for ($i = 0; isset($this->_parsers[$i]) ; $i ) {
- $script = call_user_func(array(&$this,$this->_parsers[$i]), $script);
- }
- return $script;
- }
-
- // 파싱 함수 목록을 유지하며 한꺼번에 실행됩니다.
- private $_parsers = array();
- 비공개 함수 _addParser($parser) {
- $this->_parsers[] = $parser;
- }
-
- // 인코딩 없음 - 공백과 주석만 제거
- private function _basicCompression($script) {
- $parser = new ParseMaster();
- // 안전하게 만듭니다
- $parser->escapeChar = '//';
- // 문자열 보호
- $parser->add('//'[^/'//n//r]*/'/', self::IGNORE);
- $parser->add('/"[^"//n//r]*"/', self::IGNORE);
- // 주석 제거
- $parser->add ('//////[^//n//r]*[//n//r]/', ' ')
- $parser->add('///// /*[^*]*//* ([^///][^*]*//* )*///', ' ')
- // 정규식 보호
- $parser ->add('///s (///[^/////n//r//*][^/////n//r]*///g?i?) /', '$2'); // 무시
- $parser->add('/[^//w//x24////'"*)//?:]///[^/ ////n//r//*][^/////n//r]*///g?i?/', self::IGNORE);
- // 제거: ;; doSomething();
- if ($this->_specialChars) $parser->add('/;;;[^//n//r] [//n//r]/');
- // 중복된 세미콜론 제거
- $parser->add('///(;;//)/', self::IGNORE); // (;;) 루프 보호
- $parser->add('/; //s*([};])/', '$2');
- // 위 내용을 적용합니다
- $script = $parser->exec($script);
- // 공백 제거
- $parser->add('/(//b|//x24)//s (//b|//x24)/', '$2 $3') ;
- $parser->add('/([ //-])//s ([ //-])/', '$2 $3');
- $parser->add('///s /', '');
- // 완료
- return $parser->exec($script);
- }
-
- 비공개 함수 _encodeSpecialChars($script) {
- $parser = new ParseMaster();
- // 교체: $name -> n, $$name -> na
- $parser->add('/((//x24 )([a-zA-Z$_] ))(//d*)/',
- array('fn' => ; '_replace_name')
- );
- // 교체: _name -> _0, 이중 밑줄(__name)은 무시됩니다.
- $regexp = '///b_[A-Za-z//d]//w*/';
- // 단어 목록 작성
- $keywords = $this->_analyze($script, $regexp, '_encodePrivate');
- // 빠른 참조
- $encoded = $keywords['encoded'];
-
- $parser->add($regexp,
- array(
- 'fn' => '_replace_encoded',
- 'data' => $encoded
- )
- );
- return $parser->exec($script);
- }
-
- private function _encodeKeywords($script) {
- // 이미 스크립트(예: 문자열)에 있는 상위 ASCII 값을 이스케이프합니다.
- if ($this->_encoding > 62)
- $script = $this->_escape95($script);
- // 파서 생성
- $parser = new ParseMaster();
- $encode = $this->_getEncoder($this->_encoding);
- // high-ascii의 경우 단일 문자 low-ascii를 인코딩하지 않습니다.
- $regexp = ($this->_encoding > 62) ? '///w//w /' : '///w /';
- // 단어 목록 작성
- $keywords = $this->_analyze($script, $regexp, $encode);
- $encoded = $keywords['인코딩'];
-
- // 인코딩
- $parser->add($regexp,
- array(
- 'fn' => '_replace_encoded',
- 'data' => $ 인코딩
- )
- );
- if (emptyempty($script)) return $script;
- else {
- //$res = $parser->exec($script);
- //$res = $this->_bootStrap($res, $keywords);
- //$res를 반환합니다.
- return $this->_bootStrap($parser->exec($script), $keywords);
- }
- }
-
- private function _analyze($script, $regexp, $encode) {
- // 분석
- // 스크립트의 모든 단어 검색
- $all = array();
- preg_match_all($regexp, $script, $all);
- $_sorted = 배열(); // 빈도순으로 정렬된 단어 목록
- $_encoded = array(); // 단어 사전->인코딩
- $_protected = array(); // "보호된" 단어의 인스턴스
- $all = $all[0]; // 전역 일치의 자바스크립트 구성을 시뮬레이션합니다.
- if (!emptyempty($all)) {
- $unsorted = array(); // 동일한 목록, 정렬되지 않음
- $protected = array(); // "보호된" 단어(단어->"단어" 사전)
- $value = array(); // charCode->인코딩 사전(예: 256->ff)
- $this->_count = array(); // 단어->개수
- $i = count($all); $j = 0; //$단어 = null;
- // 발생 횟수를 계산합니다. 나중에 정렬하는 데 사용됩니다.
- do {
- --$i;
- $워드 = '$' . $모두[$i];
- if (!isset($this->_count[$word])) {
- $this->_count[$word] = 0;
- $unsorted[$j] = $word;
- // 이 스크립트에 있는 모든 보호 단어의 사전을 만듭니다
- // 인코딩으로 오해할 수 있는 단어입니다.
- //if (is_string($encode) && method_exists($this, $ 인코딩))
- $values[$j] = call_user_func(array(&$this, $encode), $j);
- $보호됨['$' . $values[$j]] = $j ;
- }
- // 단어 카운터를 증가시킵니다.
- $this->_count[$word] ;
- } while ($i > 0);
- // 단어 목록 정렬을 준비하려면 먼저
- // 코드로도 사용되는 단어를 보호해야 합니다. 단어 자체에 해당하는 코드
- //를 할당합니다.
- // 예: "do"가 인코딩 범위에 속하면
- // 키워드를 저장합니다.["do"] = "do";
- // 이는 디코딩 시 문제를 방지합니다.
- $i = count($unsorted);
- do {
- $word = $unsorted[--$i];
- if (isset($protected[$word]) /*!= null*/) {
- $_sorted[$protected[$word]] = substr($word, 1);
- $_protected[$protected[$word]] = 참;
- $this->_count[$word] = 0;
- }
- } while ($i);
-
- // 빈도순으로 단어 정렬
- // 참고: 정렬의 javascript 버전과 php 버전은 다를 수 있습니다.
- // php 매뉴얼에서는 usort :
- // " If two 멤버는 동일한 것으로 비교됩니다.
- // 정렬된 배열의 순서는 정의되지 않습니다."
- // 따라서 최종 압축 스크립트는 Dean의 자바스크립트 버전과 다릅니다.
- // 동일합니다.
- // ECMAscript 표준은 이 동작을 보장하지 않습니다.
- // 따라서 모든 브라우저(예:
- // 최소 2003년 이전의 Mozilla 버전)가 이를 존중하는 것은 아닙니다.
- usort($unsorted, array(&$this, '_sortWords'));
- $j = 0;
- // 목록에 "보호된" 단어가 있기 때문에
- // 그 주위에 정렬된 단어를 추가해야 합니다.
- do {
- if (!isset($_sorted[$i]))
- $_sorted[$i] = substr($unsorted[$j ], 1);
- $_encoded[$_sorted[$i]] = $values[$i];
- } while( $i < count($unsorted));
- }
- return array(
- 'sorted' => $_sorted,
- 'encoded' => $_encoded,
- 'protected' => $_protected);
- }
-
- private $_count = array();
- 비공개 함수 _sortWords($match1, $match2) {
- return $this->_count[$match2] - $this->_count[$match1];
- }
-
- // 로드 및 디코딩에 사용되는 부팅 함수를 빌드합니다.
- private function _bootStrap($packed, $keywords) {
- $ENCODE = $this->_safeRegExp('$encode//( $count//)');
- // $packed: 압축된 스크립트
- $packed = "'" . $this->_escape($packed) . "'";
- // $ascii: 인코딩 기반
- $ascii = min(count($keywords['sorted']), $this->_encoding);
- if ($ascii == 0) $ascii = 1;
- // $count: 스크립트에 포함된 단어 수
- $count = count($keywords['sorted']);
- // $keywords: 스크립트에 포함된 단어 목록
- foreach ($keywords['protected'] as $i=>$value) {
- $keywords['sorted'][$i ] = '';
- }
- // 문자열을 배열로 변환
- ksort($keywords['sorted']);
- $keywords = "'" . implode('|',$keywords['sorted']) . "'.split('|')";
- $encode = ($this->_encoding > 62) ? '_encode95' : $this->_getEncoder($ascii);
- $encode = $this->_getJSFunction($encode);
- $encode = preg_replace('/_encoding/','$ascii', $encode);
- $encode = preg_replace('/arguments//.callee/','$encode', $encode);
- $inline = '//$count' . ($ascii > 10 ? '.toString(//$ascii)' : '');
- // $decode: 디코딩 속도를 높이는 코드 조각
- if ($this->_fastDecode) {
- // 디코더 생성
- $decode = $this->_getJSFunction('_decodeBody ');
- if ($this->_encoding > 62)
- $decode = preg_replace('/////w/', '[//xa1-//xff]', $decode);
- // 낮은 ASCII 값에 대해 인라인 인코딩을 수행합니다.
- elseif ($ascii < 36)
- $decode = preg_replace($ENCODE, $inline, $decode);
- // 특수한 경우: $count==0일 때 키워드가 없습니다.
- // 언패킹 기능의 기본 모양을 유지하고 싶기 때문에 코드를 수정하겠습니다...
- if ($count == 0)
- $decode = preg_replace($this-> _safeRegExp('($count)//s*=//s*1'), '$1=0', $decode, 1);
- }
- // 부팅 함수
- $unpack = $this->_getJSFunction('_unpack');
- if ($this->_fastDecode) {
- // 디코더 삽입
- $this->buffer = $decode;
- $unpack = preg_replace_callback('///{/', array(&$this, '_insertFastDecode'), $unpack, 1);
- }
- $unpack = preg_replace('/"/', "'", $unpack);
- if ($this->_encoding > 62) { // high-ascii
- // 정규식 일치에 대한 단어 경계를 제거합니다.
- $unpack = preg_replace('//'////////b/'/s*// |// /s*/'// //////b/'/', '', $unpack)
- }
- if ($ascii > 36 || $this->_encoding > 62 || $this-> ;_fastDecode) {
- // 인코딩 함수 삽입
- $this->buffer = $encode;
- $unpack = preg_replace_callback('///{/', array(&$this, '_insertFastEncode '), $unpack, 1);
- } else {
- // 인코딩을 인라인으로 수행
- $unpack = preg_replace($ENCODE, $inline, $unpack)
- }
- / / 부팅 기능도 팩
- $unpackPacker = new JavaScriptPacker($unpack, 0, false, true)
- $unpack = $unpackPacker->pack()
-
- // 인수
- $params = array($packed, $ascii, $count, $keywords);
- if ($this->_fastDecode) {
- $params[] = 0;
- $params[] = '{}';
- }
- $params = implode(',', $params);
-
- // 전체
- return 'eval(' . $unpack . '(' . $params . "))/n";
- }
-
- 비공개 $buffer;
- 비공개 함수 _insertFastDecode($match) {
- 반환 '{' . $this->버퍼 . ';';
- }
- 비공개 함수 _insertFastEncode($match) {
- return '{$encode=' . $this->버퍼 . ';';
- }
-
- // 음.. ..어떤 것이 필요합니까 ??
- 비공개 함수 _getEncoder($ascii) {
- return $ascii > 10? $ascii > 36? $ascii > 62?
- '_encode95' : '_encode62' : '_encode36' : '_encode10';
- }
-
- // 제로 인코딩
- // 문자: 0123456789
- 개인 함수 _encode10($charCode) {
- return $charCode;
- }
-
- // 기본 base36 지원
- // 문자: 0123456789abcdefghijklmnopqrstuvwxyz
- private function _encode36($charCode) {
- return base_convert($charCode, 10, 36);
- }
-
- // base36을 타고 대문자 알파벳 문자를 추가합니다.
- // 문자: 0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
- private function _encode62($charCode) {
- $res = ' ';
- if ($charCode >= $this->_encoding) {
- $res = $this->_encode62((int)($charCode / $this->_encoding));
- }
- $charCode = $charCode % $this->_encoding;
-
- if ($charCode > 35)
- $res를 반환합니다. chr($charCode 29);
- else
- $res를 반환합니다. base_convert($charCode, 10, 36);
- }
-
- // 상위 ASCII 값 사용
- // 문자: ?¢£¤\|§¨?a??-?ˉ°±23′μ?·?1o?? ???àá????????èéê?ìí??D?òó???×?ùú?üYT?àáa????èéé?ìí??e?òó???¶?ùú?üyt
- 비공개 함수 _encode95($charCode) {
- $res = '';
- if ($charCode >= $this->_encoding)
- $res = $this->_encode95($charCode / $this->_encoding);
-
- $res를 반환합니다. chr(($charCode % $this->_encoding) 161);
- }
-
- 비공개 함수 _safeRegExp($string) {
- return '/'.preg_replace('//$/', '///$', $string).'/';
- }
-
- 프라이빗 함수 _encodePrivate($charCode) {
- return "_" . $charCode;
- }
-
- // 파서가 사용하는 문자 보호
- private function _escape($script) {
- return preg_replace('/([/////'])/', '///$1', $script);
- }
-
- // 이미 스크립트에 있는 상위 ASCII 문자를 보호합니다.
- private function _escape95($script) {
- return preg_replace_callback(
- '/[//xa1-// xff]/',
- array(&$this, '_escape95Bis'),
- $script
- );
- }
- private function _escape95Bis($match) {
- return '/x'.((string)dechex(ord($match)));
- }
-
-
- 비공개 함수 _getJSFunction($aName) {
- if (defed('self::JSFUNCTION'.$aName))
- return 상수('self::JSFUNCTION '.$a이름);
- else
- return '';
- }
-
- // 자바스크립트 함수를 사용합니다.
- // 참고: Dean 버전에서는 이러한 함수가
- // 'String(aFunctionName);'으로 변환됩니다.
- // 이 내부 변환은 원본 코드를 완성합니다. 예:
- // 'while (aBool) anAction();'
- 로 변환됩니다. // 'while (aBool) { anAction(); }'.
- // 아래 자바스크립트 함수가 수정되었습니다.
-
- // 언패킹 기능 - 이것은 부트 스트랩 기능입니다.
- // 이 패킹 루틴에서 추출된 데이터는
- 로 전달됩니다. // 타겟에서 디코딩될 때 이 함수
- // 참고 ! : ';' 없이 결정적인.
- const JSFUNCTION_unpack =
- 'function($packed, $ascii, $count, $keywords, $encode, $decode) {
- while ($count--) {
- if ($keywords[ $count]) {
- $packed = $packed.replace(new RegExp(/'////b/' $encode($count) /'////b/', /'g/') , $keywords[$count]);
- }
- }
- return $packed;
- }';
- /*
- 'function($packed, $ascii, $count, $keywords, $encode, $decode) {
- while ($count--)
- if ($keywords[$count ])
- $packed = $packed.replace(new RegExp(/'////b/' $encode($count) /'////b/', /'g/'), $keywords [$개수]);
- $packed를 반환합니다.
- }';
- */
-
- // 디코딩 속도를 높이기 위해 압축 해제기에 코드 조각을 삽입했습니다.
- const JSFUNCTION_decodeBody =
- //_decode = function() {
- // 브라우저가 지원합니까? String.replace 여기서
- // 대체 값은 함수인가요?
- ' if (!/'/'.replace(/^/, String)) {
- // 필요한 모든 값을 디코딩합니다
- while ($count--) {
- $decode[ $encode($count)] = $keywords[$count] || $인코드($count);
- }
- // 전역 대체 함수
- $keywords = [function ($encoded) {return $decode[$encoded]}];
- // 일반 일치
- $encode = function () {return /'////w /'};
- // 루프 카운터를 재설정합니다. 이제 전역 교체를 수행하고 있습니다.
- $count = 1;
- }
- ';
- //};
- /*
- ' if (!/'/'.replace(/^/, String)) {
- // 필요한 모든 값을 디코딩
- while ($count--) $decode [$encode($count)] = $keywords[$count] || $인코드($count);
- // 전역 대체 함수
- $keywords = [function ($encoded) {return $decode[$encoded]}];
- // 일반 일치
- $encode = function () {return/'////w /'};
- // 루프 카운터를 재설정합니다. 이제 전역 교체를 수행하고 있습니다.
- $count = 1;
- }';
- */
-
- // 제로 인코딩
- // 문자: 0123456789
- const JSFUNCTION_encode10 =
- 'function($charCode) {
- return $charCode;
- }';//;';
-
- // 고유한 base36 지원
- // 문자: 0123456789abcdefghijklmnopqrstuvwxyz
- const JSFUNCTION_encode36 =
- 'function($charCode) {
- return $charCode.toString(36);
- }';//;'; }';
-
- // 상위 ASCII 값 사용
- // 문자: ?¢£¤₩|§¨?a??-?ˉ°±23′μ?·?1o????àá ????????èéê?ìí??D?òó???×?ùú?üYT?àáa?????èéê?ìí??e?òó???¶?ùú?üyt
- const JSFUNCTION_encode95 =
- 'function($charCode) {
- return ($charCode < _encoding ? /'/' : 인수.callee($charCode / _encoding))
- String.fromCharCode($charCode % _encoding 161) ;
- }';
-
- }
-
- class ParseMaster {
- public $ignoreCase = false;
- 공개 $escapeChar = '';
-
- // 상수
- const EXPRESSION = 0;
- const 교체 = 1;
- const 길이 = 2;
-
- // 중첩 수준을 결정하는 데 사용됩니다.
- private $GROUPS = '///(/';//g
- private $SUB_REPLACE = '///$//d/';
- 비공개 $INDEXED = '/^//$//d $/';
- 비공개 $TRIM = '/([/'"])//1//.(.*)//.// 1//1$/';
- 비공개 $ESCAPE = '////./';//g
- 비공개 $QUOTE = '//'/'
- 비공개 $DELETED = '/ //x01[^//x01]*//x01/';//g
-
- public function add($expression, $replacement = '') {
- // 하위 개수를 계산합니다. 표현식
- // - 각 패턴 자체가 하위 표현식이므로 하나를 추가합니다.
- $length = 1 preg_match_all($this->GROUPS, $this->_internalEscape((string)$expression), $out );
-
- // 문자열만 처리 $replacement
- if (is_string($replacement)) {
- // 패턴이 하위 표현식을 처리합니까?
- if (preg_match($this) ->SUB_REPLACE, $replacement)) {
- // 간단한 조회인가요? (예: "$2")
- if (preg_match($this->INDEXED, $replacement)) {
- // 인덱스 저장(일치하는 문자열을 빠르게 검색하는 데 사용)
- $replacement = (int )(substr($replacement, 1)) - 1;
- } else { // 복잡한 조회(예: "Hello $2 $1")
- // 조회를 수행하는 함수 작성
- $quote = preg_match($this->QUOTE, $this-> ;_internalEscape($replacement))
- ? '"' : "'";
- $replacement = array(
- 'fn' => '_backReferences',
- 'data' => array(
- 'replacement' => $ 교체,
- '길이' => $length,
- 'quote' => $quote
- )
- )
- }
- }
- // 수정된 인수 전달
- if (!emptyempty($expression)) $this->_add($expression, $replacement, $length);
- else $this->_add('/^$/', $replacement, $length);
- }
-
- public function exec($string) {
- // 전역 교체 실행
- $this->_escaped = array();
-
- // Dean의 _patterns.toSTRing 시뮬레이션
- $regexp = '/';
- foreach ($this->_patterns as $reg) {
- $regexp .= '(' . substr($reg[self::EXPRESSION], 1, -1) . ')|';
- }
- $regexp = substr($regexp, 0, -1) . '/';
- $regexp .= ($this->ignoreCase) ? '나' : '';
-
- $string = $this->_escape($string, $this->escapeChar);
- $string = preg_replace_callback(
- $regexp,
- array(
- &$this,
- '_replacement'
- ),
- $string
- );
- $string = $this->_unescape($string, $this->escapeChar);
-
- return preg_replace($this->DELETED, '', $string);
- }
-
- public function Reset() {
- // 이 객체를 재사용할 수 있도록 패턴 컬렉션을 지웁니다.
- $this->_patterns = array();
- }
- // 비공개
- 비공개 $_escaped = array(); // 이스케이프된 문자
- private $_patterns = array(); // 인덱스에 저장된 패턴
-
- // 새 패턴을 생성하고 패턴 컬렉션에 추가
- private function _add() {
- $arguments = func_get_args();
- $this->_patterns[] = $arguments;
- }
-
- // 전역 대체 함수입니다(상당히 복잡합니다)
- private function _replacement($arguments) {
- if (emptyempty($arguments)) return '';
-
- $i = 1; $j = 0;
- // 패턴을 반복합니다.
- while (isset($this->_patterns[$j])) {
- $pattern = $this->_patterns[$j ];
- //결과가 있나요?
- if (isset($arguments[$i]) && ($arguments[$i] != '')) {
- $replacement = $pattern[self::REPLACEMENT];
-
- if (is_array($replacement) && isset($replacement['fn'])) {
-
- if (isset($replacement['data'])) $this-> 버퍼 = $replacement['데이터'];
- return call_user_func(array(&$this, $replacement['fn']), $arguments, $i);
-
- } elseif (is_int($replacement)) {
- return $arguments[$replacement $i];
-
- }
- $delete = ($this->escapeChar == '' ||
- strpos($arguments[$i], $this->escapeChar) === false)
- ? '' : "/x01" . $인수[$i] . "/x01";
- $delete를 반환합니다. $교체;
-
- // 하위 표현식에 대한 참조를 건너뜁니다.
- } else {
- $i = $pattern[self::LENGTH];
- }
- }
- }
-
- 비공개 함수 _backReferences($match, $offset) {
- $replacement = $this->buffer['replacement'];
- $quote = $this->버퍼['quote'];
- $i = $this->버퍼['길이'];
- while ($i) {
- $replacement = str_replace('$'.$i--, $match[$offset $i], $replacement);
- }
- $replacement를 반환합니다.
- }
-
- 비공개 함수 _replace_name($match, $offset){
- $length = strlen($match[$offset 2]);
- $start = $length - max($length - strlen($match[$offset 3]), 0);
- substr($match[$offset 1], $start, $length) 를 반환합니다. $match[$offset 4];
- }
-
- 비공개 함수 _replace_encoded($match, $offset) {
- return $this->buffer[$match[$offset]];
- }
-
-
- // php : preg_replace_callback에 추가 데이터를 전달할 수 없습니다.
- // 그리고 create_function에서 &$this를 사용할 수 없으므로 더 낮은 수준으로 이동하겠습니다.
- private $buffer;
-
- // 이스케이프 문자 인코딩
- private function _escape($string, $escapeChar) {
- if ($escapeChar) {
- $this->buffer = $escapeChar;
- return preg_replace_callback(
- '///' . $escapeChar . '(.)' .'/',
- array(&$this, '_escapeBis'),
- $string
- );
-
- } else {
- return $string;
- }
- }
- 비공개 함수 _escapeBis($match) {
- $this->_escaped[] = $match[1];
- return $this->buffer;
- }
-
- // 이스케이프 문자 디코딩
- private function _unescape($string, $escapeChar) {
- if ($escapeChar) {
- $regexp = '/'.'/ /'.$escapeChar.'/';
- $this->buffer = array('escapeChar'=> $escapeChar, 'i' => 0);
- return preg_replace_callback
- (
- $regexp,
- array(&$this, '_unescapeBis'),
- $string
- );
-
- } else {
- return $string;
- }
- }
- 비공개 함수 _unescapeBis() {
- if (isset($this->_escaped[$this->buffer['i']])
- && $this ->_escaped[$this->buffer['i']] != '')
- {
- $temp = $this->_escaped[$this->buffer['i'] ];
- } else {
- $temp = '';
- }
- $this->buffer['i'] ;
- $this->buffer['escapeChar'] 를 반환합니다. $ 임시;
- }
-
- private function _internalEscape($string) {
- return preg_replace($this->ESCAPE, '', $string);
- }
- }
- ?>
제제대码
2、이동 PHP 문서는 pack_js_file.php를 사용합니다.
-
- require 'tom-class.JavaScriptPacker.php';
- $t1 = 마이크로타임(true);
- $source_dir = realpath(dirname(__FILE__)."/..")."/common/script_unpacked";
- $out_dir = realpath(dirname(__FILE__)."/..")."/common/script";
- $d = dir( $source_dir );
- //echo "핸들: " . $d->핸들 . "/N";
- //에코 "경로: " . $d->경로 . "/N";
- while (false !== ($entry = $d->read())) {
- if($entry=='.') continue;
- if($entry=='..') 계속;
- if($entry=='.svn') 계속;
- echo $entry."/n";
- $script = file_get_contents($source_dir.'/'.$entry);
- $packer = new JavaScriptPacker($script, 'Normal', true, false);
- $packed = $packer->pack();
- file_put_contents($out_dir. '/'. $entry, $packed);
- }
- $d->close();
- $t2 = 마이크로타임(true);
- $time = sprintf('%.4f', ($t2 - $t1) );
- echo 'script in ', $time, ' s.', "/n";
- 죽다;
- ?>
复代代码
3、创建一个自动执行的bat文件。
文件中输入如下下内容 :
/usr/local/php/bin/php pack_js_file.php
总结:
只要填好相对路径或者绝对路径,一键加密JS完成,那是相当的方便!!
|