Saturday, 7 September 2013

php echo without decoding Hex values

php echo without decoding Hex values

I want to output "\x68\x61\061"
$a = "\x68\x61\061";
echo $a
This does not result into "\x68\x61\061" in the output. How to fix this?

No comments:

Post a Comment