php 加解密函数

2021-05-03 11:26

阅读:557

标签:base64   time   字符   replace   encrypt   lse   int   单位   code   

PHP 加密解密函数:

/**
 * 系统加密方法
 * @param string $data 要加密的字符串
 * @param string $key  加密密钥
 * @param int $expire  过期时间 单位 秒
 * @return string
 * @author winky
 */
function encrypt($data, $key = ‘‘, $expire = 0) {
    $key = md5(empty($key) ? C(‘DATA_AUTH_KEY‘) : $key);
    $data = base64_encode($data);
    $x = 0;
    $len = strlen($data);
    $l = strlen($key);
    $char = ‘‘;

    for ($i = 0; $i  0 && $expire 

  

php 加解密函数

标签:base64   time   字符   replace   encrypt   lse   int   单位   code   

原文地址:https://www.cnblogs.com/jackzhuo/p/12122738.html


评论


亲,登录后才可以留言!