PHP中的bin2hex()函數將字符串轉換為十六進製值。首先使用high-nibble完成byte-wise的轉換。
注意:它不是用於將代表二進製數字的字符串轉換為十六進製的。
用法:
bin2hex($string)
參數:該函數接受單個參數$string。這是將轉換為十六進製值的字符串。
返回值:該函數返回參數中傳遞的字符串的十六進製值。
例子:
Input : string = "geeks" Output : 6765656b73 Input : string = "1111" Output : 31313131 Explanation: "1111" is converted to its hexadecimal values, it is not treated as a binary string, else the answer would have been F which is not in this case.
以下示例程序旨在說明PHP中的bin2hex()函數:
程序1:
<?php
// PHP program to demonstrate
// the bin2hex() fucntion
$str = "geeks";
echo bin2hex($str);
?>
輸出:
6765656b73
程序2:
<?php
// PHP program to demonstrate
// the bin2hex() fucntion
$str = "1111";
echo bin2hex($str);
?>
輸出:
31313131
參考:
http://php.net/manual/en/function.bin2hex.php
相關用法
- d3.js d3.hcl()用法及代碼示例
- p5.js nfc()用法及代碼示例
- p5.js nfp()用法及代碼示例
- p5.js nfs()用法及代碼示例
- PHP cos( )用法及代碼示例
- PHP sin( )用法及代碼示例
- p5.js nf()用法及代碼示例
- PHP tan( )用法及代碼示例
- PHP pow( )用法及代碼示例
- d3.js d3.map.set()用法及代碼示例
- PHP next()用法及代碼示例
- d3.js d3.set.has()用法及代碼示例
注:本文由純淨天空篩選整理自Striver大神的英文原創作品 PHP | bin2hex() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。