bin2hex
将二进制转为十六进制表示string bin2hex(string $str);
返回ASCII字符串,为参数str的十六进制表示,转换为字节方式,高四位字节优先.$string="sunhao";
echo bin2hex($string);输出二进制的文件+---------------------------------------------------------------------------------------+base64_decode:对使用MIME base64编码数据进行解码string base64_decode(string $encode data)base64_encode--使用MIME base64对数据进行编码
string base64_encode(string $data)base64_encode()returns使用base64对data进行编码,此种编码是为了使二进制数据可以通过非纯8-bit的传输层传输,例如电子邮件的主体.
+---------------------------------------------------------------------------------------+