- PHP 正则表达式(PCRE)
- PHP 图像处理
- PHP 5 Array 函数
- PHP 5 Calendar 函数
- PHP cURL 函数
- PHP 5 Date/Time 函数
- PHP 5 Directory 函数
- PHP Error 和 Logging 函数
- PHP 5 Filesystem 函数
- PHP Filter 函数
- PHP FTP 函数
- PHP HTTP 函数
- PHP Libxml 函数
- PHP Mail 函数
- PHP 5 Math 函数
- PHP 杂项 函数
- PHP 5 MySQLi 函数
- PHP 5 SimpleXML 函数
- PHP lcfirst() 函数
- PHP 5 String 函数
- PHP XML Parser 函数
- PHP Zip File 函数
- PHP 5 时区
PHP bin2hex() 函数
实例
把 "Hello World!" 转换为十六进制值:
<?php
$str = bin2hex("Hello World!");
echo($str);
?>
$str = bin2hex("Hello World!");
echo($str);
?>
定义和用法
bin2hex() 函数把 ASCII 字符的字符串转换为十六进制值。字符串可通过使用 pack() 函数再转换回去。
语法
bin2hex(string)
参数 | 描述 |
---|---|
string | 必需。规定要转换的字符串。 |
技术细节
返回值: | 返回要转换字符串的十六进制值。 |
---|---|
PHP 版本: | 4+ |
更多实例
实例 1
把一个字符串值从二进制转换为十六进制,再转换回去:
<?php
$str = "Hello world!";
echo bin2hex($str) . "<br>";
echo pack("H*",bin2hex($str)) . "<br>";
?>
$str = "Hello world!";
echo bin2hex($str) . "<br>";
echo pack("H*",bin2hex($str)) . "<br>";
?>
PHP String 参考手册
下一篇:PHP chop() 函数
关注微信小程序
扫描二维码
程序员编程王