<?php enum TestEnum: string { case One = 'one'; case Two = 'two'; case Three = 'three'; } var_dump(TestEnum::from('two')); var_dump(TestEnum::tryFrom('four'));
You have javascript disabled. You will not be able to edit any code.