mirror of
https://github.com/php/php-src.git
synced 2024-11-24 18:34:21 +08:00
29 lines
586 B
PHP
29 lines
586 B
PHP
--TEST--
|
|
Bug #52854: ReflectionClass::newInstanceArgs does not work for classes without constructors
|
|
--FILE--
|
|
<?php
|
|
class Test {
|
|
}
|
|
$c = new ReflectionClass('Test');
|
|
var_dump(new Test);
|
|
var_dump(new Test());
|
|
var_dump($c->newInstance());
|
|
var_dump($c->newInstanceArgs(array()));
|
|
|
|
try {
|
|
var_dump($c->newInstanceArgs(array(1)));
|
|
} catch(ReflectionException $e) {
|
|
echo $e->getMessage()."\n";
|
|
}
|
|
?>
|
|
--EXPECTF--
|
|
object(Test)#%d (0) {
|
|
}
|
|
object(Test)#%d (0) {
|
|
}
|
|
object(Test)#%d (0) {
|
|
}
|
|
object(Test)#%d (0) {
|
|
}
|
|
Class Test does not have a constructor, so you cannot pass any constructor arguments
|