php代码帮忙翻译一下,什么意思 谢谢了!

function _encrypt($string, $operation = 'ENCODE', $key = '', $expiry = 0){
if($operation == 'DECODE') {
$string = str_replace('_', '/', $string);
}
$key_length = 4;
$key = md5($key != '' ? $key : System::load_sys_config("code","code"));
$fixedkey = md5($key);
$egiskeys = md5(substr($fixedkey, 16, 16));
$runtokey = $key_length ? ($operation == 'ENCODE' ? substr(md5(microtime(true)), -$key_length) : substr($string, 0, $key_length)) : '';
$keys = md5(substr($runtokey, 0, 16) . substr($fixedkey, 0, 16) . substr($runtokey, 16) . substr($fixedkey, 16));
$string = $operation == 'ENCODE' ? sprintf('%010d', $expiry ? $expiry + time() : 0).substr(md5($string.$egiskeys), 0, 16) . $string : base64_decode(substr($string, $key_length));

$i = 0; $result = '';
$string_length = strlen($string);
for ($i = 0; $i < $string_length; $i++){
$result .= chr(ord($string{$i}) ^ ord($keys{$i % 32}));
}
if($operation == 'ENCODE') {
$retstrs = str_replace('=', '', base64_encode($result));
$retstrs = str_replace('/', '_', $retstrs);
return $runtokey.$retstrs;
} else {
if((substr($result, 0, 10) == 0 || substr($result, 0, 10) - time() > 0) && substr($result, 10, 16) == substr(md5(substr($result, 26).$egiskeys), 0, 16)) {
return substr($result, 26);
} else {
return '';
}
}
}

第1个回答  2014-02-16
无头无尾的看不懂,不过粗略看一下,好像是一段加密解密函数,当_encrypt()函数参数的第二个是DECODE时解密$string字符串,当第二个参数是ENCEDE时加密$string字符串
第2个回答  推荐于2017-07-17
这是人家的加密运算方法,一般不需要改。。传参给它 会有一个返回值 。本回答被网友采纳
第3个回答  2014-02-19
加密 解密。。
第4个回答  2017-07-17
这是加密和解密方法
第5个回答  2014-02-16
他人<。)#)))≦88eg
相似回答