The value of PI is 3.14159
Hello, World!

Constants in PHP are identifiers for fixed values that remain unchanged throughout the script. They are defined using the define() function and are accessed using their names. Constants differ from variables in that once defined, their values cannot be altered during the script's execution, providing a way to store immutable and globally accessible values.