经测试代码如下:
/**
* 字符串加密、解密类
*
* @param
* @author 编程之家 jb51.cc jb51.cc
**/
class cryption {
function en($str,$key) {
$ret='';
$str = base64_encode ($str);
for ($i=0; $i<=strlen($str)-1; $i++){
$d_str=substr($str,$i,1);
$int =ord($d_str);
$int=$int^$key;
$hex=strtoupper(dechex($int));
$ret.=$hex;
}
return $ret;
}
function de($str,$key) {
$ret='';
for ($i=0; $i<=strlen($str)-1; 0){
$hex=substr($str,2);
$dec=hexdec($hex);
$dec=$dec^$key;
$ret.=chr($dec);
$i=$i+2;
}
return base64_decode($ret);
}
}
$cryption=new cryption;
/*** 代码来自编程之家 jb51.cc(jb51.cc) ***/
原文链接:/php/529067.html