I was wondering if it is possible to make control characters in a string visible.
$mystring = "Test\n";
echo $mystring;
This will output Test
but i don't want PHP to translate \n
it should just output Test\n
(For debugging purposes). Is this possible?