Explaination:
Constants in PHP are identifiers for simple values that cannot be changed during the execution of a script. Unlike variables, constants are globally scoped and do not use the $ prefix. They are typically defined using the define() function or the const keyword.
The key differences between constants and variables: