首页 > 开发 > PHP > 正文

md5 16位二进制与32位字符串相互转换示例

2024-05-04 23:20:11
字体:
来源:转载
供稿:网友


复制代码 代码如下:


<?php

$str = 'test';
$cm = md5($str);
$bm = md5($str, true);

$cstr = implode(unpack('H*', $bm));
$bstr = pack('H*', $cm);


echo 'str:'. $str . "<br >/n";
echo 'cm :' . $cm . "<br >/n";
echo 'cstr:' . $cstr . "<br >/n";
echo 'urlencode(bm)  :' . urlencode($bm) . "<br >/n";
echo 'urlencode(bstr):' . urlencode($bstr) . "<br >/n";

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表