PHP hex2bin() 函数
PHP hex2bin() 函数
实例
把十六进制值转换为 ASCII 字符:
<?php
echo hex2bin("48656c6c6f20576f726c6421");
?>
echo hex2bin("48656c6c6f20576f726c6421");
?>
以上实例输出结果:
Hello World!
定义和用法
hex2bin() 函数把十六进制值的字符串转换为 ASCII 字符。
语法
hex2bin(string)
参数 | 描述 |
---|---|
string | 必需。要转换的十六进制值。 |
技术细节
返回值: | 返回转换字符串的 ASCII 字符,如果失败则返回 FALSE。 |
---|---|
PHP 版本: | 5.4.0+ |
更新日志: | 自 PHP 5.4.1 起,如果字符串长度为奇数,则抛出一个警告。在 PHP 5.4.0 中,奇数字符串被默默接受,但是最后一个字节会被移除。 自 PHP 5.5.1 起,如果字符串是无效的十六进制字符串,则抛出一个警告。 |
PHP String 参考手册
相关文章
- PHP 简介
- PHP 魔术常量
- PHP date() 函数
- PHP 包含文件 include 和 require 语句
- PHP array_combine() 函数
- PHP array_diff_assoc() 函数
- PHP array_merge_recursive() 函数
- PHP array_multisort() 函数
- PHP array_product() 函数
- PHP array_udiff_uassoc() 函数
- PHP array_uintersect_assoc() 函数
- PHP array_uintersect_uassoc() 函数
- PHP array_unshift() 函数
- PHP arsort() 函数
- PHP each() 函数
- PHP extract() 函数
- PHP reset() 函数
- PHP sizeof() 函数
- PHP uksort() 函数
- PHP 5 Math 函数