Annotation of embedaddon/php/ext/standard/tests/array/var_export.phpt, revision 1.1.1.1

1.1       misho       1: --TEST--
                      2: var_export() and objects with numeric indexes properties
                      3: --FILE--
                      4: <?php
                      5: $a = (object) array (1, 3, "foo" => "bar");
                      6: var_export($a);
                      7: ?>
                      8: --EXPECT--
                      9: stdClass::__set_state(array(
                     10:    0 => 1,
                     11:    1 => 3,
                     12:    'foo' => 'bar',
                     13: ))

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>