vote up 2 vote down star

I'm investigating encodings in PHP5. Is there some way to get a raw hex dump of a string? i.e. a hex representation of each of the bytes (not characters) in a string?

flag

52% accept rate

1 Answer

vote up 3 vote down check
for ($i = 0; $i < strlen($string); $i++) {
    echo dechex(ord($string[$i]));
}

or easier

echo bin2hex($string);
link|flag
Or a more functional approach: print_r(array_map('dechex', array_map('ord', str_split($string)))); – Ionut G. Stan Jun 29 at 10:29

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.