PHP hex2bin() Function
You are Here:
PHP hex2bin()
The hex2bin()
function decodes a hexadecimally encoded binary string.
Warning: This function does NOT convert a hexadecimal number to a binary number. This can be done using the base_convert() function.
Example
PHP Compiler
<?php
echo hex2bin("31303130");
?>
Output
1010
Syntax
hex2bin(str)
Parameter Values
Value | Type | Explanation |
---|---|---|
str | Required | Specifies the hexadecimal representation of string. |
Return Value
Value | Explanation |
---|---|
String | Returns the binary representation of the given data or FALSE on failure. |
Reminder
Hi Developers, we almost covered 90% of String functions and Interview Question on PHP with examples for quick and easy learning.
We are working to cover every Single Concept in PHP.
Please do google search for:
Join Our Channel
Join our telegram channel to get an instant update on depreciation and new features on HTML, CSS, JavaScript, jQuery, Node.js, PHP and Python.
This channel is primarily useful for Full Stack Web Developer.