3v4l.org

run code in 300+ PHP versions simultaneously
<?php namespace MyNamespace; class MyClass { function foo(iterable $iterable, array $array, int $int) { } } $reflection = new \ReflectionMethod(MyClass::class, 'foo'); $parameters = $reflection->getParameters(); echo (string) $parameters[0]->getType(), PHP_EOL; echo (string) $parameters[1]->getType(), PHP_EOL;
Output for 7.1.0 - 7.1.20, 7.2.0 - 7.2.33, 7.3.16 - 7.3.33, 8.0.0 - 8.0.30, 8.1.0 - 8.1.28, 8.2.0 - 8.2.19, 8.3.0 - 8.3.7
iterable array
Output for 7.4.0 - 7.4.33
Deprecated: Function ReflectionType::__toString() is deprecated in /in/XmNOl on line 13 iterable Deprecated: Function ReflectionType::__toString() is deprecated in /in/XmNOl on line 14 array
Output for 7.0.0 - 7.0.20
MyNamespace\iterable array

preferences:
171.11 ms | 401 KiB | 174 Q