(PHP >= 5.4.0)
hex2bin — Convert hex to binary
$data
)Converts the hex representation of data to binary
data
Hexadecimal representation of data.
Returns the binary representation of the given data.
Example #1 hex2bin() example
<?php
$hex = hex2bin("6578616d706c65206865782064617461");
var_dump($hex);
?>
以上例程的输出类似于:
string(16) "example hex data"