From dbe443055d7eb499ee03571722f67ab049e896fc Mon Sep 17 00:00:00 2001 From: Andy Lindeman Date: Tue, 22 Apr 2003 02:38:18 +0000 Subject: [PATCH] make up your mind philip ;-) git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@124219 c90b9560-bf6c-de11-be94-00142212c4b1 --- language/operators.xml | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/language/operators.xml b/language/operators.xml index 7c7bb8a736..a87fb1faeb 100644 --- a/language/operators.xml +++ b/language/operators.xml @@ -1,5 +1,5 @@ - + Operators @@ -604,6 +604,7 @@ echo "Should be 4: " . $a . "
\n"; PHP follows Perl's convention when dealing with arithmetic operations on character variables and not C's. For example, in Perl 'Z'+1 turns into 'AA', while in C 'Z'+1 turns into '[' ( ord('Z') == 90, ord('[') == 91 ). + Note that character variables can be incremented but not decremented. Arithmetric Operations on Character Variables @@ -629,11 +630,6 @@ AC - - - Character variables can be incremented but not decremented. - -