constants in PHP

Constants in PHP

The value of PI is: 3.14159
The value of Gravity is: 9.8

Explanation

Constants are fixed values that remain unchanged throughout the program after being defined. Unlike variables, which can be reassigned, constants are written without using the $ sign and maintain their assigned value across all executions.

Go Back