3v4l.org

run code in 300+ PHP versions simultaneously
<?php final class Gender { const UNKNOWN = 0; const MALE = 1; const FEMALE = 2; const NOT_APPLICABLE = 9; public static function from($value) { static $names; if ( ! $names) { $class = new ReflectionClass(Gender::class); $constants = $class->getConstants(); $names = array_keys($constants); } foreach ($names as $name) { if (constant(__CLASS__ . '::' . $name) === $value) { return $name; } } throw new InvalidArgumentException('No matching gender for value ' . $value); } // no instances allowed private function __construct() {} } echo Gender::from(Gender::FEMALE); ?>
Output for git.master, git.master_jit, rfc.property-hooks
FEMALE

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