I've found this line in one of the codes coppied from web but have no ide why they use char() function at the end of it. Please let me know why it is used, what it does and what if I don't use it all.
Thanks in advance.
CODE:
$crlf = chr(13) . chr(10);
echo '<html><head><title>Whatever</title></head><body>Hello</body></html>' . $crlf;