Aryan PrajapatKnowledge Contributor
In PHP, how do you define a constant?
In PHP, how do you define a constant?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Questions | Answers | Discussions | Knowledge sharing | Communities & more.
You must use the define() function to define a constant, and you just merely mention its name to receive its value.
A constant can never be modified or undefined once it has been defined. There’s no reason to use a $ as a constant. The name of a valid constant must begin with a letter or an underscore.