3v4l.org

run code in 300+ PHP versions simultaneously
<?php namespace Derp; abstract class Enum { protected $value; protected static $possibleValues; protected static function getPossibleValues() { if (static::$possibleValues) { return static::$possibleValues; } $reflectionClass = new \ReflectionClass(get_called_class()); static::$possibleValues = $reflectionClass->getConstants(); return static::$possibleValues; } /** * @param $name * @param $arguments * @return static * @throws \Exception */ public static function __callStatic($name, $arguments) { $possibleValues = static::getPossibleValues(); if (!array_key_exists($name, $possibleValues)) { throw new \Exception; } if (count($arguments) > 0) { throw new \Exception; } return self::createInstance($name, $possibleValues[$name]); } /** * @param $value * @return static */ protected static function createInstance($value) { $enum = new static; $enum->value = $value; return $enum; } protected function getValue() { return $this->value; } public function equals(Enum $otherValue) { return get_class($otherValue) === get_called_class() && $otherValue->getValue() === $this->getValue(); } public static function all() { return array_map( function($value) { return static::createInstance($value); }, static::getPossibleValues() ); } } class Day extends Enum { const MONDAY = 'monday'; const FRIDAY = 'friday'; } $monday = Day::MONDAY(); var_dump($monday); var_dump($monday->equals(Day::FRIDAY())); var_dump(Day::all());
Output for git.master, git.master_jit, rfc.property-hooks
object(Derp\Day)#1 (1) { ["value":protected]=> string(6) "MONDAY" } bool(false) array(2) { ["MONDAY"]=> object(Derp\Day)#3 (1) { ["value":protected]=> string(6) "monday" } ["FRIDAY"]=> object(Derp\Day)#4 (1) { ["value":protected]=> string(6) "friday" } }

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:
54.75 ms | 401 KiB | 8 Q