| Current Path : /hdd/hdd21/main/php/php-7.3.1/Zend/tests/ |
| Current File : //hdd/hdd21/main/php/php-7.3.1/Zend/tests/bug30080.phpt |
--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) {
}
}