List of Reserved Words
PHP Manual

List of other reserved words

The following words cannot be used to name a class, interface or trait, and they are also prohibited from being used in namespaces.

Reserved words
int (as of PHP 7) float (as of PHP 7) bool (as of PHP 7) string (as of PHP 7)
true (as of PHP 7) false (as of PHP 7) null (as of PHP 7) void (as of PHP 7.1)
iterable (as of PHP 7.1) object (as of PHP 7.2)

The following list of words have had soft reservations placed on them. Whilst they may still be used as class, interface, and trait names (as well as in namespaces), usage of them is highly discouraged since they may be used in future versions of PHP.

Soft reserved words
resource (as of PHP 7) mixed (as of PHP 7) numeric (as of PHP 7)


List of Reserved Words
PHP Manual