1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
|
--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
|