<?php enum testEnum { case one; case two; case three; public static function fromName (string $caseName): static { return static::{$caseName}; } } var_dump(testEnum::fromName("two"));
You have javascript disabled. You will not be able to edit any code.