define in PHP

Syntax of define in PHP bool define(string name, mixed value[, int case_insensitive]) Defines a constant named name and sets its value to value. If case_insensitive is set and is true, the operation fails if a constant with the same name, compared case insensitively, is previously defined. Otherwise, the check for existing constants is done case … Read more