Constants in PHP

Value of constant PI: 3.14159

Value of constant SITE_NAME: My Website

Constants in PHP are immutable variables, which means once they are defined, they cannot be changed. They are useful for storing values that should remain constant throughout the script, unlike regular variables that can be altered.