summaryrefslogtreecommitdiff
path: root/tests/classes/tostring_002.phpt
blob: 7dda92339e6f0311bf9d3794ccb85b0255fcbce5 (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
--TEST--
ZE2 __toString() in __destruct
--FILE--
<?php

class Test
{
	function __toString()
	{
		return "Hello\n";
	}

	function __destruct()
	{
		echo $this;
	}
}

$o = new Test;
$o = NULL;

$o = new Test;

?>
====DONE====
--EXPECT--
Hello
====DONE====
Hello