kennyt Sat Jan 17 16:02:50 2004 EDT
Modified files:
/phpdoc/en/language expressions.xml
Log:
Added === and !==.
Index: phpdoc/en/language/expressions.xml
diff -u phpdoc/en/language/expressions.xml:1.24 phpdoc/en/language/expressions.xml:1.25
--- phpdoc/en/language/expressions.xml:1.24 Sat Dec 20 20:22:47 2003
+++ phpdoc/en/language/expressions.xml Sat Jan 17 16:02:49 2004
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.24 $ -->
+<!-- $Revision: 1.25 $ -->
<chapter id="language.expressions">
<title>Expressions</title>
<simpara>
@@ -97,7 +97,9 @@
These expressions evaluate to either 0 or 1, meaning &false; or &true;
(respectively). PHP supports > (bigger than), >= (bigger than
or equal to), == (equal), != (not equal), < (smaller than) and <=
- (smaller than or equal to). These expressions are most commonly used
+ (smaller than or equal to). The language also supports a set of strict
+ equivalence operators: === (equal to and same type) and !== (not equal
+ to or not same type). These expressions are most commonly used
inside conditional execution, such as <literal>if</literal>
statements.
</simpara>