From 8051d9a81675afe7ca56811c05c0cefa889c210d Mon Sep 17 00:00:00 2001 From: Andy Lindeman Date: Tue, 22 Apr 2003 02:32:13 +0000 Subject: [PATCH] be consistent with parans git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@124218 c90b9560-bf6c-de11-be94-00142212c4b1 --- language/operators.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/language/operators.xml b/language/operators.xml index aa0425d4d7..7c7bb8a736 100644 --- a/language/operators.xml +++ b/language/operators.xml @@ -1,5 +1,5 @@ - + Operators @@ -603,7 +603,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 ). + into 'AA', while in C 'Z'+1 turns into '[' ( ord('Z') == 90, ord('[') == 91 ). Arithmetric Operations on Character Variables