blob: 0f4c80517dfeb21836f825d2bb370aeb70417252 (
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
|
--TEST--
ZE2 __toString()
--SKIPIF--
<?php if (version_compare(zend_version(), '2.0.0-dev', '<')) die('skip ZendEngine 2 needed'); ?>
--FILE--
<?php
class test1 {
}
class test2 {
function __toString() {
return "Converted";
}
}
echo "====test1====\n";
$o = new test1;
print_r($o);
var_dump((string)$o);
var_dump($o);
echo "====test2====\n";
$o = new test2;
print_r($o);
var_dump((string)$o);
var_dump($o);
echo "====done!====\n";
?>
--EXPECTF--
====test1====
test1 Object
(
)
Notice: Object of class test1 could not be converted to string in %stostring.php on line %d
string(6) "Object"
object(test1)#%d (0) {
}
====test2====
test2 Object
(
)
string(9) "Converted"
object(test2)#%d (0) {
}
====done!====
|