<?php enum TestA { case A1; case A2; } enum TestB { case B1; case B2; } $value = TestB::B1; $out = $value instanceof TestB ? 'B' : 'A'; echo "{$out}";
You have javascript disabled. You will not be able to edit any code.