码迷,mamicode.com
首页 > Web开发 > 详细

【PHP】【PHP】php源码加密(一)

时间:2020-02-14 23:03:06      阅读:152      评论:0      收藏:0      [点我收藏+]

标签:too   require   advance   lib   new   file   latest   test   comment   

Encipher - PHP代码加密 | PHP源码加密
下载地址:https://github.com/uniqid/encipher
源码如下:

<?php
$app = str_replace('\\', '/', dirname(__FILE__));
require_once($app . '/lib/encipher.min.php');

$original = $app . '/original'; //待加密的文件目录
$encoded  = $app . '/encoded';  //加密后的文件目录
$encipher = new Encipher($original, $encoded);

/**
* 设置加密模式 false = 低级模式; true = 高级模式
* 低级模式不使用eval函数
* 高级模式使用了eval函数
*/
$encipher->advancedEncryption = true;

//设置注释内容
$encipher->comments = array(
   'Encipher - the PHP code encode tool',
   'Version: 1.1.1',
   '',
   'The latest version of Encipher can be obtained from:',
   'https://github.com/uniqid/encipher'
);

echo "<pre>\n";
$encipher->encode();
echo "</pre>\n";

【PHP】【PHP】php源码加密(一)

标签:too   require   advance   lib   new   file   latest   test   comment   

原文地址:https://www.cnblogs.com/richerdyoung/p/12309811.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!