mirror of
https://github.com/php/php-src.git
synced 2024-11-28 12:26:37 +08:00
19 lines
249 B
PHP
19 lines
249 B
PHP
--TEST--
|
|
Bug #30080 (Passing array or non array of objects)
|
|
--FILE--
|
|
<?php
|
|
class foo {
|
|
function foo($arrayobj) {
|
|
var_dump($arrayobj);
|
|
}
|
|
}
|
|
|
|
new foo(array(new stdClass));
|
|
?>
|
|
--EXPECT--
|
|
array(1) {
|
|
[0]=>
|
|
object(stdClass)#2 (0) {
|
|
}
|
|
}
|