123456789101112131415161718 |
- --TEST--
- Bug #30080 (Passing array or non array of objects)
- --FILE--
- <?php
- class foo {
- function __construct($arrayobj) {
- var_dump($arrayobj);
- }
- }
- new foo(array(new stdClass));
- ?>
- --EXPECTF--
- array(1) {
- [0]=>
- object(stdClass)#%d (0) {
- }
- }
|