/
usr
/
local
/
lsws
/
phpbuild
/
php-8.0.7
/
ext
/
reflection
/
tests
/
File Upload :
llllll
Current File: //usr/local/lsws/phpbuild/php-8.0.7/ext/reflection/tests/004.phpt
--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
Copyright ©2k19 -
Hexid
|
Tex7ure