<?php enum Fruit { case Apple; case Banana; } class Colors { public const RED = Fruit::Apple; public const YELLOW = Fruit::Banana; } var_dump(gettype(Colors::RED));
You have javascript disabled. You will not be able to edit any code.