Constants

The value of PI is: 3.14159
Hello, World!

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: