3v4l.org

run code in 300+ PHP versions simultaneously
<?php /** * @psalm-param class-string $class * @psalm-return \Generator<class-string> */ function classTypes(string $class): \Generator { yield $class; yield from class_parents($class); yield from (new \ReflectionClass($class))->getInterfaceNames(); } interface I1 {} interface I2 {} abstract class A implements I1 {} final class B extends A implements I2 {} var_dump(iterator_to_array(classTypes(B::class), false));
Output for git.master, git.master_jit, rfc.property-hooks
array(4) { [0]=> string(1) "B" [1]=> string(1) "A" [2]=> string(2) "I1" [3]=> string(2) "I2" }

This tab shows result from various feature-branches currently under review by the php developers. Contact me to have additional branches featured.

Active branches

Archived branches

Once feature-branches are merged or declined, they are no longer available. Their functionality (when merged) can be viewed from the main output page


preferences:
66.27 ms | 401 KiB | 8 Q