php-src/ext/standard/tests/array/var_export.phpt
2002-11-16 17:26:52 +00:00

12 lines
194 B
PHP

--TEST--
var_export() and objects with numeric indexes properties
--FILE--
<?php
$a = (object) array (1, 3, "foo" => "bar");
var_export($a);
?>
--EXPECT--
class stdClass {
var $foo = 'bar';
}