摘要: //加密 function encrypt($data) { $key = md5("safregr"); $str = base64_encode($data); $res = base64_encode($str.$key); return $res; } //解密 function decrypt($data) { $key =... 阅读全文
posted @ 2017-07-25 17:14 郁冬 阅读(3894) 评论(0) 推荐(0) 编辑