Why does echo-ing "<! <" return "<! >"?
Posted
by mkeblx
on Stack Overflow
See other posts from Stack Overflow
or by mkeblx
Published on 2010-05-18T02:16:42Z
Indexed on
2010/05/18
2:20 UTC
Read the original article
Hit count: 243
Here is my exact code.
<?php
echo "<! <";
?>
And this is the returned string.
<! >
Why is the last character changing?
© Stack Overflow or respective owner