php-src/ext/reflection/tests/004.phpt
2019-01-29 13:04:20 +01:00

42 lines
699 B
PHP

--TEST--
ReflectionMethod::invoke() with non object or null value
--FILE--
<?php
class a {
function __construct(){
}
}
class b {
}
$b = new b();
$a=new ReflectionClass("a");
$m=$a->getMethod("__construct");
try {
$m->invoke(null);
} catch (ReflectionException $E) {
echo $E->getMessage()."\n";
}
try {
$m->invoke($b);
} catch (ReflectionException $E) {
echo $E->getMessage()."\n";
}
$b = new a();
try {
$m->invoke($b);
} catch (ReflectionException $E) {
echo $E->getMessage()."\n";
}
?>
--EXPECT--
Trying to invoke non static method a::__construct() without an object
Given object is not an instance of the class this method was declared in