/
vshmidt
/
php
Обзор
Документация
Войти
/
vshmidt
/
php
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
ext/reflection/tests/004.phpt
41 строка
705 B
Nikita Popov
Reindent phpt files
04 фев 2020, 00:52
04 фев 2020, 00:52
f8d7958
Код
Авторство
О чём код?
--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