Magic Constants

Learn about the magic constants and their usage.

We'll cover the following...

In addition to magic methods, the PHP language offers several magic constants. For example, we may use the magic constant __CLASS__ in order to get the name of the class in which it resides.

Note: ...