PHP Constants

Course: INFOST 440

School: University of Wisconsin-Milwaukee

Explanation

Constants are named values that cannot be changed after they are created during a script. Variables can be reassigned and begin with a dollar sign, while constants do not use a dollar sign. Constants are useful for values that should remain the same throughout a program.

Return to Index