Trying to figure out, what PHP
is doing with newlines and special characters. I have a string, when I do var_dump($string)
the output is:
string 'ls -al
free -m' (length=16)
How do I view the special characters buried in here? For example need to see if they are \n
or

or whatever they are.
Thanks.