mirror of
https://github.com/php/php-src.git
synced 2024-12-21 16:00:18 +08:00
19 lines
253 B
PHP
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) {
|
|
}
|
|
}
|