1
0
mirror of https://github.com/php/php-src.git synced 2026-03-26 01:02:25 +01:00
Files
archived-php-src/ext/standard/tests/array/var_export.phpt
Andrey Hristov 4b2a32b701 fixing test
2004-01-11 11:55:33 +00:00

12 lines
197 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 {
public $foo = 'bar';
}