php-src/ext/standard/tests/array/var_export.phpt
2009-01-07 21:23:10 +00:00

14 lines
228 B
PHP

--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(
0 => 1,
1 => 3,
'foo' => 'bar',
))