Annotation of embedaddon/php/Zend/tests/bug37811.phpt, revision 1.1.1.1

1.1       misho       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>