php-src/Zend/tests/bug30080.phpt
2018-10-14 12:07:20 -03:00

19 lines
253 B
PHP

--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) {
}
}