php-src/ext/standard/tests/array/var_export.phpt

14 lines
228 B
Plaintext
Raw Normal View History

--TEST--
var_export() and objects with numeric indexes properties
--FILE--
<?php
$a = (object) array (1, 3, "foo" => "bar");
var_export($a);
?>
--EXPECT--
stdClass::__set_state(array(
2009-01-07 21:23:01 +00:00
0 => 1,
1 => 3,
'foo' => 'bar',
))