PHP 自带的加密解密函数 目前经常使用的加密函数有:md5(), sha1(), crypt(), base64_encode(), urlencode() . 其中 md5(), sha1(), crypt() 是不可逆的加密方式. base64_encode() ,urlencode() 是可逆的加密方式. 分别对应的解密函数为:base64_decode(), urldecode(). 使用方法: $str = '要加密的字符串'; // md5 加密 $md5 = md5($str);