PHP Constants

Examples of Constants

School: University of Wisconsin-Milwaukee

Course: INFOST 440

What Are Constants?

Constants are values that are meant to stay the same throughout a PHP program. Unlike variables, constants do not use a dollar sign and their values cannot normally be changed after they are created. Constants are useful for information that should remain the same while a program is running.