/
vshmidt
/
php
Обзор
Документация
Войти
/
vshmidt
/
php
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
ext/reflection/tests/008.phpt
62 строки
2 KB
Máté Kocsis
Deprecate calling ReflectionMethod::__construct() with 1 argument
05 дек 2023, 00:27
05 дек 2023, 00:27
688c6f3
Код
Авторство
О чём код?
--TEST-- ReflectionMethod::__construct() tests --FILE-- <?php $a = array("", 1, "::", "a::", "::b", "a::b"); foreach ($a as $val) { try { new ReflectionMethod($val); } catch (Exception $e) { var_dump($e->getMessage()); } try { ReflectionMethod::createFromMethodName($val); } catch (Exception $e) { var_dump($e->getMessage()); } } $a = array("", 1, ""); $b = array("", "", 1); foreach ($a as $key=>$val) { try { new ReflectionMethod($val, $b[$key]); } catch (Exception $e) { var_dump($e->getMessage()); } } echo "Done\n"; ?> --EXPECTF-- Deprecated: Calling ReflectionMethod::__construct() with 1 argument is deprecated, use ReflectionMethod::createFromMethodName() instead in %s on line %d string(90) "ReflectionMethod::__construct(): Argument #1 ($objectOrMethod) must be a valid method name" string(91) "ReflectionMethod::createFromMethodName(): Argument #1 ($method) must be a valid method name" Deprecated: Calling ReflectionMethod::__construct() with 1 argument is deprecated, use ReflectionMethod::createFromMethodName() instead in %s on line %d string(90) "ReflectionMethod::__construct(): Argument #1 ($objectOrMethod) must be a valid method name" string(91) "ReflectionMethod::createFromMethodName(): Argument #1 ($method) must be a valid method name" Deprecated: Calling ReflectionMethod::__construct() with 1 argument is deprecated, use ReflectionMethod::createFromMethodName() instead in %s on line %d string(23) "Class "" does not exist" string(23) "Class "" does not exist" Deprecated: Calling ReflectionMethod::__construct() with 1 argument is deprecated, use ReflectionMethod::createFromMethodName() instead in %s on line %d string(24) "Class "a" does not exist" string(24) "Class "a" does not exist" Deprecated: Calling ReflectionMethod::__construct() with 1 argument is deprecated, use ReflectionMethod::createFromMethodName() instead in %s on line %d string(23) "Class "" does not exist" string(23) "Class "" does not exist" Deprecated: Calling ReflectionMethod::__construct() with 1 argument is deprecated, use ReflectionMethod::createFromMethodName() instead in %s on line %d string(24) "Class "a" does not exist" string(24) "Class "a" does not exist" string(23) "Class "" does not exist" string(24) "Class "1" does not exist" string(23) "Class "" does not exist" Done