summaryrefslogtreecommitdiff
path: root/ext/standard/tests/array/var_export.phpt
blob: acfec7699198167a1562a267f0d200c6acbb5715 (plain)
1
2
3
4
5
6
7
8
9
10
11
--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(
   'foo' => 'bar',
))