From 7cc14952bc4a5b734c8b78c12ebd6a387bb1730d Mon Sep 17 00:00:00 2001 From: Derick Rethans Date: Wed, 2 Apr 2003 06:44:47 +0000 Subject: [PATCH] - Fix XML git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@122115 c90b9560-bf6c-de11-be94-00142212c4b1 --- language/oop.xml | 15 ++------------- 1 file changed, 2 insertions(+), 13 deletions(-) diff --git a/language/oop.xml b/language/oop.xml index 1ef9f02ef3..7868d683e9 100644 --- a/language/oop.xml +++ b/language/oop.xml @@ -1,5 +1,5 @@ - + Classes and Objects @@ -1031,18 +1031,7 @@ o1 !== o2 : TRUE Even in the cases where we have object composition, the same comparison rules apply. In the example below we create a container class that stores an associative array of Flag objects. - Composite objects u(o,p) and v(q,p) -o1 == o2 : TRUE -o1 != o2 : FALSE -o1 === o2 : TRUE -o1 !== o2 : FALSE - -u(o,p) and w(q) -o1 == o2 : FALSE -o1 != o2 : TRUE -o1 === o2 : FALSE -o1 !== o2 : TRUE - + Compound object comparisons in PHP 4