Discussion :: PHP - CS
-
What will be the output of the following PHP code?
<?php
echo hex2bin("48656c6c6f20576f726c6421");
?>
Answer : Option A
Explanation :
The hex2bin() function converts a string of hexadecimal values to ASCII characters.
Be The First To Comment