PHP Constants
The animal is a Mammal
The animal is 5 years old.
Constants are special values in PHP that stay the same throughout the entire program. They are different from variables because once you set a constant, you can't change its value. This is really useful when you have a value that you want to use in many different parts of your code, and you don't want it to change by accident.