diff --git a/language/types.xml b/language/types.xml index 722b54040d..b1125daa19 100644 --- a/language/types.xml +++ b/language/types.xml @@ -1,5 +1,5 @@ - + Types @@ -703,23 +703,6 @@ echo 'I am trying to include at this point: \n a newline'; may not be indented, and there may not be any spaces or tabs after or before the semicolon. - - Probably the nastiest gotcha is that there may also - not be a carriage return (\r) at the end of - the line, only - a form feed, AKA newline (\n). - Since Microsoft Windows uses the sequence - \r\n as a line - terminator, your heredoc may not work if you write your - script in a Windows editor. However, most programming - editors provide a way to save your files with a UNIX - line terminator. - - @@ -1917,17 +1900,8 @@ examples: The behaviour of an automatic conversion to array is currently undefined. - - -$a = 1; // $a is an integer -$a[0] = "f"; // $a becomes an array, with $a[0] holding "f" - - - While the above example may seem like it should clearly result in - $a becoming an array, the first element of which is 'f', consider - this: $a = "1"; // $a is a string