把 ASCII 字元的字串轉換為十六進位制值 bin2hex()
bin2hex(string $str) :string
把引數 str
轉換為十六進位制的字串。轉換使用位元組方式,高四位位元組優先。
引數:
$str 待轉換的字串
返回值:
返回指定字串十六進位制的表示
$str = 'hello world';
$newStr = bin2hex ($str);
echo $newStr; // 68656c6c6f20776f726c64
本作品採用《CC 協議》,轉載必須註明作者和本文連結