Php hex2bin
From w3cyberlearnings
Contents |
PHP function hex2bin
This function decodes a hexadecimally encoded binary string. This function is for (PHP v >=5.4.0).
Syntax hex2bin
- string: string input
hex2bin(string);
Note
This function does not convert hex number to binary number. If you want to convert Hex to Binary number, use base_convert() function.
Example 1
<?php echo hex2bin("48656c6c6f20776f726c6420"); ?>
Output
Hello world