【函数功能】
该函数把指定字符串的字符的ASCII值转换为十六进制值。
【函数语法】
bin2hex ($str)
【参数说明】
$str:必需,要转换的字符串。
【演示程序】
<?php
/**
* bin2hex ($str)
* **/
$str = "Hello i am PHP!";
echo bin2hex($str);
?>
【输出结果】
48656c6c6f206920616d2050485021
【特别注意】
1.该函数与hex2bin()函数互为逆函数。
2.该函数可以转换中文。
3.PHP 版本:4+。
【原版定义】
/**
* Convert binary data into hexadecimal representation
* @link http://www.php.net/manual/en/function.bin2hex.php
* @param str string <p>
* A string.
* </p>
* @return string the hexadecimal representation of the given string.
*/
转载请注明出处:php1234.cn ,原文地址:http://www.php1234.cn/a/functions/2016/1019/99.html