php如何利用函数将二进制转为字符串的两种方法。1、利用hex2bin()
函数将16进制值转为字符串;2、利用base_convert()
函数将二进制转为16进制
1、利用hex2bin()函数将16进制值转为字符串
<?php header('content-type:text/html;charset=utf-8'); $str="110100001100101011011000110110001101111"; echo "二进制值:".$str."<br><br>"; $hex=base_convert($str,2,16); echo "对应16进制值:".$hex."<br><br>"; $res=hex2bin($hex); echo "对应字符串:".$res; ?>
2、利用base_convert()函数将二进制转为16进制
<?php header('content-type:text/html;charset=utf-8'); $str="110100001100101011011000110110001101111"; echo "二进制值:".$str."<br><br>"; $hex=base_convert($str,2,16); echo "对应16进制值:".$hex; ?>
标签: base_convert, hex2bin, php入门, 二进制, 字符串
上面是“php利用函数将二进制转为字符串的两种方法”的全面内容,想了解更多关于 php入门 内容,请继续关注web建站教程。
当前网址:https://m.ipkd.cn/webs_2232.html
声明:本站提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请发送到邮箱:admin@ipkd.cn,我们会在看到邮件的第一时间内为您处理!