From f614a40b25dca52378e5e255e01949f596f72120 Mon Sep 17 00:00:00 2001 From: Kenneth Schwartz Date: Thu, 8 Apr 2004 04:25:42 +0000 Subject: [PATCH] Bug #25356: ?: (ternary) - shold operate as in C, but does not git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@155531 c90b9560-bf6c-de11-be94-00142212c4b1 --- language/operators.xml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/language/operators.xml b/language/operators.xml index 7aca6d3aef..55ad038a3d 100644 --- a/language/operators.xml +++ b/language/operators.xml @@ -1,5 +1,5 @@ - + Operators @@ -428,8 +428,7 @@ echo "hallo" ^ "hello"; // Outputs the ascii values #0 #4 #0 #0 #0 - Another conditional operator is the "?:" (or ternary) operator, - which operates as in C and many other languages. + Another conditional operator is the "?:" (or ternary) operator.