<?php enum Suit: string { case Hearts = 'H'; case Diamonds = 'D'; case Clubs = 'C'; case Spades = 'S'; } $reflection = new ReflectionEnum('Suit'); if ($reflection->isBacked()) { echo $reflection->getBackingType(); } else { // consider as object }
You have javascript disabled. You will not be able to edit any code.