标签:als output str 编码 put 加密 base64 encode urlencode
1. MD5加密
不可逆加密
md5($password)
2. Crype加密
string crypt ( string $str [, string $salt ] )
不可逆
3. Sha1加密
string sha1 ( string $str [, bool $raw_output = false ] )
不可逆
4. URL加密
可逆加密
urlencode ( string $str )
urldecode($encodeUrl)
5. Base64信息编码加密
base64_encode ( string $data )
base64_decode ( string $data [, bool $strict = false ] )
标签:als output str 编码 put 加密 base64 encode urlencode
原文地址:http://www.cnblogs.com/yiqianer/p/6542089.html