这篇文章主要为大家详细介绍了php 字符串加密函数(支持中文)示例,具有一定的参考价值,可以用来参考一下。
对php 字符串加密函数(支持中文)感兴趣的小伙伴,下面一起跟随四海网的小编两巴掌来看看吧!
/**
* php 字符串加密函数(支持中文)
*
* @param
* @arrange 512-笔记网: www.q1010.com
**/
function dencrypt($string, $isEncrypt = true, $key = "youdian")
{
if (!isset($string{0}) || !isset($key{0})) {
return false;
}
$dynKey = $isEncrypt ? hash('sha1', microtime(true)) : substr($string, 0, 40);
$fixedKey = hash('sha1', $key);
$dynKeyPart1 = substr($dynKey, 0, 20);
$dynKeyPart2 = substr($dynKey, 20);
$fixedKeyPart1 = substr($fixedKey, 0, 20);
$fixedKeyPart2 = substr($fixedKey, 20);
$key = hash('sha1', $dynKeyPart1 . $fixedKeyPart1 . $dynKeyPart2 . $fixedKeyPart2);
$string = $isEncrypt ? $fixedKeyPart1 . $string . $dynKeyPart2 : (isset($string{339}) ? gzuncompress(base64_decode(substr($string, 40))) : base64_decode(substr($string, 40)));
$n = 0;
$result = '';
$len = strlen($string);
for ($n = 0; $n < $len; $n++) {
$result .= chr(ord($string{$n}) ^ ord($key{$n % 40}));
}
return $isEncrypt ? $dynKey . str_replace('=', '', base64_encode($n > 299 ? gzcompress($result) : $result)) : substr($result, 20, -20);
}
/*** 来自四海网(www.q1010.com) ***/
本文来自:http://www.q1010.com/173/1386-0.html
注:关于php 字符串加密函数(支持中文)示例的内容就先介绍到这里,更多相关文章的可以留意四海网的其他信息。
关键词:字符串加密
四海网收集整理一些常用的php代码,JS代码,数据库mysql等技术文章。