some clarifications regarding line endings and special characters

like '\n' and '\r' to make it more clear that PHP is more C-ish
than PERL-ish here


git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@30352 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Hartmut Holzgraefe 2000-08-16 09:05:09 +00:00
parent 2c6fb77bf6
commit 47b92dda52

View file

@ -100,15 +100,15 @@ $a = 1.234; $a = 1.2e3;
<tbody>
<row>
<entry><literal>\n</literal></entry>
<entry>newline</entry>
<entry>linefeed (LF or 0x0A in ASCII)</entry>
</row>
<row>
<entry><literal>\r</literal></entry>
<entry>carriage</entry>
<entry>cariage return (CR or 0x0D in ASCII)</entry>
</row>
<row>
<entry><literal>\t</literal></entry>
<entry>horizontal tab</entry>
<entry>horizontal tab (HT or 0x09 in ASCII)</entry>
</row>
<row>
<entry><literal>\\</literal></entry>