1
0
mirror of https://github.com/php/php-src.git synced 2026-03-25 08:42:29 +01:00
Files
archived-php-src/ext/standard/tests/array/var_export.phpt
Antony Dovgal d36dc698dd fix test
2009-01-07 21:23:01 +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',
))