3v4l.org

run code in 300+ PHP versions simultaneously
<?php declare(strict_types=1); namespace fema\enums; abstract class Enum { protected $name, $ordinal; /** * @return string the name of the enum */ public function name() : string { return $this->name; } /** * @return int a number representing this enum. Starts at 0. */ public function ordinal() : int { return $this->ordinal; } /** * Alias of name() * @return string the name of the enum */ public function __toString() : string { return $this->name(); } /** * @return Enum[] all the enums that are defined in the class */ public abstract static function getAll() : array; /** * Return a specific enum given its name * @param string $name the name of the enum * @return Enum the enum that corresponds to the passed name * @throws EnumNotFoundException if an enum with the passed name is not found */ public static function fromName(string $name) : Enum { foreach (static::getAll() as $item) { if ($item->name() === $name) { return $item; } } throw new EnumNotFoundException("The enum " . static::class . " with name '$name' wasn't found!"); } /** * Return a specific enum given its ordinal * @param int $ordinal the ordinal of the enum * @return Enum the enum that corresponds to the passed ordinal * @throws EnumNotFoundException if an enum with the passed ordinal is not found */ public static function fromOrdinal(int $ordinal) : Enum { foreach (static::getAll() as $item) { if ($item->ordinal() === $ordinal) { return $item; } } throw new EnumNotFoundException("The enum " . static::class . " with ordinal '$ordinal' wasn't found!"); } } class DocEnum extends Enum { static $enums = []; private function __construct() { } /** * @inheritDoc */ public static function getAll() : array { if (!isset(static::$enums[static::class])) { $last = new \ReflectionClass(static::class); /** @var \ReflectionClass[] $classes */ $classes = [$last]; while ($last->getParentClass()->getName() !== self::class) { //Put on top of array array_unshift($classes, $last = new \ReflectionClass($last->getParentClass()->getName())); } $enums = []; $ordinal = 0; foreach ($classes as $class) { $doc = $class->getDocComment(); $matches = []; if (preg_match_all('/^\\s*\\*\\s*@method\\s+static\\s+([A-Z]+)\\(\\)\\s*$/m', $doc, $matches) > 0) { foreach ($matches[1] as $name) { $enum = new DocEnum(); $enum->name = $name; $enum->ordinal = $ordinal++; $enums[] = $enum; } } } static::$enums[static::class] = $enums; } return static::$enums[static::class]; } } /** * * @method static MONDAY() * @method static TUESDAY() * @method static WENSDAY() * @method static THURSDAY() * @method static FRIDAY() */ class WorkDays extends DocEnum { } /* * @method static SATURDAY() * @method static SUNDAY() */ class Days extends WorkDays { } var_dump(WorkDays::getAll()); var_dump(Days::getAll());
Output for git.master, git.master_jit
array(5) { [0]=> object(fema\enums\DocEnum)#2 (2) { ["name":protected]=> string(6) "MONDAY" ["ordinal":protected]=> int(0) } [1]=> object(fema\enums\DocEnum)#3 (2) { ["name":protected]=> string(7) "TUESDAY" ["ordinal":protected]=> int(1) } [2]=> object(fema\enums\DocEnum)#4 (2) { ["name":protected]=> string(7) "WENSDAY" ["ordinal":protected]=> int(2) } [3]=> object(fema\enums\DocEnum)#5 (2) { ["name":protected]=> string(8) "THURSDAY" ["ordinal":protected]=> int(3) } [4]=> object(fema\enums\DocEnum)#6 (2) { ["name":protected]=> string(6) "FRIDAY" ["ordinal":protected]=> int(4) } } Fatal error: Uncaught TypeError: preg_match_all(): Argument #2 ($subject) must be of type string, bool given in /in/6P7E5:96 Stack trace: #0 /in/6P7E5(96): preg_match_all('/^\\s*\\*\\s*@meth...', false, Array) #1 /in/6P7E5(133): fema\enums\DocEnum::getAll() #2 {main} thrown in /in/6P7E5 on line 96
Process exited with code 255.
Output for rfc.property-hooks
array(5) { [0]=> object(fema\enums\DocEnum)#2 (2) { ["name":protected]=> string(6) "MONDAY" ["ordinal":protected]=> int(0) } [1]=> object(fema\enums\DocEnum)#3 (2) { ["name":protected]=> string(7) "TUESDAY" ["ordinal":protected]=> int(1) } [2]=> object(fema\enums\DocEnum)#4 (2) { ["name":protected]=> string(7) "WENSDAY" ["ordinal":protected]=> int(2) } [3]=> object(fema\enums\DocEnum)#5 (2) { ["name":protected]=> string(8) "THURSDAY" ["ordinal":protected]=> int(3) } [4]=> object(fema\enums\DocEnum)#6 (2) { ["name":protected]=> string(6) "FRIDAY" ["ordinal":protected]=> int(4) } } Fatal error: Uncaught TypeError: preg_match_all(): Argument #2 ($subject) must be of type string, false given in /in/6P7E5:96 Stack trace: #0 /in/6P7E5(96): preg_match_all('/^\\s*\\*\\s*@meth...', false, Array) #1 /in/6P7E5(133): fema\enums\DocEnum::getAll() #2 {main} thrown in /in/6P7E5 on line 96
Process exited with code 255.

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:
38.54 ms | 402 KiB | 8 Q