vrana Thu Dec 9 03:09:49 2004 EDT
Modified files:
/phpdoc/en/language operators.xml
Log:
Array comparison (bug #31032)
http://cvs.php.net/diff.php/phpdoc/en/language/operators.xml?r1=1.80&r2=1.81&ty=u
Index: phpdoc/en/language/operators.xml
diff -u phpdoc/en/language/operators.xml:1.80
phpdoc/en/language/operators.xml:1.81
--- phpdoc/en/language/operators.xml:1.80 Sun Aug 22 05:45:01 2004
+++ phpdoc/en/language/operators.xml Thu Dec 9 03:09:48 2004
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.80 $ -->
+<!-- $Revision: 1.81 $ -->
<chapter id="language.operators">
<title>Operators</title>
<simpara>
@@ -844,12 +844,13 @@
<row>
<entry>$a == $b</entry>
<entry>Equality</entry>
- <entry>&true; if $a and $b have the same elements.</entry>
+ <entry>&true; if $a and $b have the same key/value pairs.</entry>
</row>
<row>
<entry>$a === $b</entry>
<entry>Identity</entry>
- <entry>&true; if $a and $b have the same elements in the same
order.</entry>
+ <entry>&true; if $a and $b have the same key/value pairs in the same
+ order and of the same types.</entry>
</row>
<row>
<entry>$a != $b</entry>