PHP hex2bin() 函數(shù)
PHP hex2bin() 函數(shù)
實例
把十六進制值轉換為 ASCII 字符:
<?php
echo hex2bin("48656c6c6f20576f726c6421");
?>
echo hex2bin("48656c6c6f20576f726c6421");
?>
以上實例輸出結果:
Hello World!
定義和用法
hex2bin() 函數(shù)把十六進制值的字符串轉換為 ASCII 字符。
語法
hex2bin(string)
參數(shù) | 描述 |
---|---|
string | 必需。要轉換的十六進制值。 |
技術細節(jié)
返回值: | 返回轉換字符串的 ASCII 字符,如果失敗則返回 FALSE。 |
---|---|
PHP 版本: | 5.4.0+ |
更新日志: | 自 PHP 5.4.1 起,如果字符串長度為奇數(shù),則拋出一個警告。在 PHP 5.4.0 中,奇數(shù)字符串被默默接受,但是最后一個字節(jié)會被移除。 自 PHP 5.5.1 起,如果字符串是無效的十六進制字符串,則拋出一個警告。 |

相關文章
- PHP 簡介
- PHP 魔術常量
- PHP date() 函數(shù)
- PHP 包含文件 include 和 require 語句
- PHP array_combine() 函數(shù)
- PHP array_diff_assoc() 函數(shù)
- PHP array_merge_recursive() 函數(shù)
- PHP array_multisort() 函數(shù)
- PHP array_product() 函數(shù)
- PHP array_udiff_uassoc() 函數(shù)
- PHP array_uintersect_assoc() 函數(shù)
- PHP array_uintersect_uassoc() 函數(shù)
- PHP array_unshift() 函數(shù)
- PHP arsort() 函數(shù)
- PHP each() 函數(shù)
- PHP extract() 函數(shù)
- PHP reset() 函數(shù)
- PHP sizeof() 函數(shù)
- PHP uksort() 函數(shù)
- PHP 5 Math 函數(shù)