Understanding Constant in PHP – Updated to PHP 7
Previously, we have discussed variable in PHP, this time, we’ll discuss constant in PHP. As we already know, PHP provides two places to store values, that are (1) variable and (2) constant. The characteristic of a variable is that it can be overwritten, means that its value can be changed. Opposite to that, constants are fixed, we can’t change its value. Because of its natu..