blob: 90eb9a0581fbea0302d7aa56a44d9d19b9aec756 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
--TEST--
Test standard 'compare' object handler
--FILE--
<?php
echo "Simple test for standard compare object handler\n";
class class1{}
class class2{}
class class3{
public $aaa;
private $bbb;
protected $ccc;
}
class class4 extends class3{
}
class class5 extends class3{
public $ddd;
private $eee;
}
// Define a bunch of objects all of which will use standard compare object handler
$obj1 = new class1();
$obj2 = new class2();
$obj3 = new class3();
$obj4 = new class4();
$obj5 = new class5();
echo "\n-- The following compare should return TRUE --\n";
var_dump($obj1 == $obj1);
echo "\n-- All the following compares should return FALSE --\n";
var_dump($obj1 == $obj2);
var_dump($obj1 == $obj3);
var_dump($obj1 == $obj4);
var_dump($obj1 == $obj5);
var_dump($obj4 == $obj3);
var_dump($obj5 == $obj3);
?>
===DONE===
--EXPECT--
Simple test for standard compare object handler
-- The following compare should return TRUE --
bool(true)
-- All the following compares should return FALSE --
bool(false)
bool(false)
bool(false)
bool(false)
bool(false)
bool(false)
===DONE===
|