hexadecimal to binary php code example
Example: hex to bin php
$hexadecimal = 'afc758';
$binary = base_convert($hexadecimal, 16, 2);
echo $hexadecimal . ' -> binary value is: ' . $binary;
$hexadecimal = 'afc758';
$binary = base_convert($hexadecimal, 16, 2);
echo $hexadecimal . ' -> binary value is: ' . $binary;