|
壓縮編碼(加密)代碼:
復(fù)制代碼 代碼如下:
<?php
function encode_file_contents($filename) {
$type=strtolower(substr(strrchr($filename,'.'),1));
if('php'==$type && is_file($filename) && is_writable($filename)){// 如果是php文件 并且可寫 則進(jìn)行壓縮編碼
$contents = file_get_contents($filename);// 判斷文件是否已經(jīng)被編碼處理
$pos = strpos($contents,'/*Protected by 草名 http://www.crazyi.cn Cryptation*/');
if(false === $pos || $pos>100){ // 去除php文件注釋和空白,減少文件大小
$contents = php_strip_whitespace($filename);
// 去除php頭部和尾部標(biāo)識(shí)
$headerPos = strpos($contents,'<?php');
$footerPos = strrpos($contents,'?>');
$contents = substr($contents,$headerPos+5,$footerPos-$headerPos);
$encode = base64_encode(gzdeflate($contents));// 開始編碼
$encode = '<?php'." /*Protected by 草名 http://www.crazyi.cn Cryptation*//n eval(gzinflate(base64_decode(".$encode.")));/n /*Reverse engineering is illegal and strictly prohibited- (C)草名 Cryptation 2008*/ /n?>";
return file_put_contents($filename,$encode);
}
}
return false;
}
//調(diào)用函數(shù)
$filename='g:/我的文檔/桌面/test.php';
encode_file_contents($filename);
?>
<?php
function encode_file_contents($filename) {
$type=strtolower(substr(strrchr($filename,'.'),1));
if('php'==$type && is_file($filename) && is_writable($filename)){// 如果是php文件 并且可寫 則進(jìn)行壓縮編碼
$contents = file_get_contents($filename);// 判斷文件是否已經(jīng)被編碼處理
$pos = strpos($contents,'/*Protected by 草名 http://www.crazyi.cn Cryptation*/');
if(false === $pos || $pos>100){ // 去除php文件注釋和空白,減少文件大小
$contents = php_strip_whitespace($filename);
// 去除php頭部和尾部標(biāo)識(shí)
$headerPos = strpos($contents,'<?php');
$footerPos = strrpos($contents,'?>');
$contents = substr($contents,$headerPos+5,$footerPos-$headerPos);
$encode = base64_encode(gzdeflate($contents));// 開始編碼
$encode = '<?php'." /*Protected by 草名 http://www.crazyi.cn Cryptation*//n eval(gzinflate(base64_decode(".$encode.")));/n /*Reverse engineering is illegal and strictly prohibited- (C)草名 Cryptation 2008*/ /n?>";
return file_put_contents($filename,$encode);
}
}
return false;
}
//調(diào)用函數(shù)
$filename='g:/我的文檔/桌面/test.php';
encode_file_contents($filename);
?>
壓縮解碼(解密)代碼:
復(fù)制代碼 代碼如下:
<?php
$Code = '這里填寫要解密的編碼'; // base64編碼
$File = 'test.php';//解碼后保存的文件
$Temp = base64_decode($Code);
$temp = gzinflate($Temp);
$FP = fopen($File,"w");
fwrite($FP,$temp);
fclose($FP);
echo "解密成功!";
?>
php技術(shù):PHP base64+gzinflate壓縮編碼和解碼代碼,轉(zhuǎn)載需保留來源!
鄭重聲明:本文版權(quán)歸原作者所有,轉(zhuǎn)載文章僅為傳播更多信息之目的,如作者信息標(biāo)記有誤,請(qǐng)第一時(shí)間聯(lián)系我們修改或刪除,多謝。