Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Enum As A Name

<?php

class enum {} 

enum class {} 

?>

It is possible to name a class enum, but not to name an enum class. In fact, ‘enum’ is an authorized name for interfaces and traits, to help with backward compatibility.

This also means that an enumeration may be called ‘enum’.

See Also

PHP Features

Last updated: 10 September 2026