summaryrefslogtreecommitdiff
path: root/ext/standard/tests/array/var_export.phpt
blob: 7b9df146243f58f461d80698b27462faf5c969ac (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--
class stdClass {
  var $foo = 'bar';
}