How to define constant in php

Constants in PHP (1) A constant is a name or an identifier for a simple value. It is defined using the define function and it does not start with $ sign Syntax define(name, value, case-insensitive) Parameters: name: Specifies the name of the constant value: Specifies the value of the constant case-insensitive: Specifies whether the constant …

How to define constant in php Read More »