php文件加密解密

2019-09-17 09:49:26来源:博客园 阅读 ()

新老客户大回馈,云服务器低至5折

php文件加密解密

利用base64加解密

base64_encode是加密,而base64_decode是解密

语法:string base64_encode(string data);   语法:string base64_decode(string data);

加密案例如下:

public function encode_file_contents($filename) {
$type=strtolower(substr(strrchr($filename,'.'),1));
if ('php' == $type && is_file($filename) && is_writable($filename)) { // 如果是PHP文件 并且可写 则进行压缩编码
$contents = file_get_contents($filename); // 判断文件是否已经被编码处 理
$contents = php_strip_whitespace($filename);
// 去除PHP头部和尾部标识
$headerPos = strpos($contents,'<?php');
// echo $headerPos.'<br>';
//echo $footerPos;//,$footerPos-$headerPos
$contents = substr($contents,$headerPos+5);
$encode = base64_encode(gzdeflate($contents)); // 开始编码
$encode = '<?php'."\n eval(gzinflate(base64_decode("."'".$encode."'".")));\n\n?>";
return file_put_contents($filename, $encode);
}
return false;
}
public function index(){
$filename = '根目录下绝对路径.php';
$a=$this->encode_file_contents($filename);
if($a){
echo "OK,加密完成!";
}else{
echo "No,加密失败!";
}
}


原文链接:https://www.cnblogs.com/xinyixuan/p/11527428.html
如有疑问请与原作者联系

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:Delphi - 鼠标上下滚动基础消息事件

下一篇:Delphi - 调用外部程序并阻塞到外部程序中