The value of PI is: 3.14
The area of a circle with radius 5 is: 78.5Constants in PHP are like variables, but their values remain fixed throughout the script execution. Key differences:
- Variables can change during runtime, while constants cannot.
- Constants are automatically global across the entire script.
- Constants are defined using the define() function or the const keyword.