File:
[ELWIX - Embedded LightWeight unIX -] /
embedaddon /
php /
Zend /
tests /
bug37811.phpt
Revision
1.1.1.1 (vendor branch):
download - view:
text,
annotated -
select for diffs -
revision graph
Tue Feb 21 23:47:52 2012 UTC (13 years, 1 month ago) by
misho
Branches:
php,
MAIN
CVS tags:
v5_4_3elwix,
v5_4_29p0,
v5_4_29,
v5_4_20p0,
v5_4_20,
v5_4_17p0,
v5_4_17,
v5_3_10,
HEAD
php
1: --TEST--
2: Bug #37811 (define not using toString on objects)
3: --FILE--
4: <?php
5:
6: class TestClass
7: {
8: function __toString()
9: {
10: return "Foo";
11: }
12: }
13:
14: define("Bar",new TestClass);
15: var_dump(Bar);
16: define("Baz",new stdClass);
17: var_dump(Baz);
18:
19: ?>
20: ===DONE===
21: --EXPECTF--
22: string(3) "Foo"
23:
24: Warning: Constants may only evaluate to scalar values in %sbug37811.php on line %d
25:
26: Notice: Use of undefined constant Baz - assumed 'Baz' in %sbug37811.php on line %d
27: string(3) "Baz"
28: ===DONE===
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>