What are the ways in which php defines and uses constants
What are the knowledge points of this article "php definition and the use of constants?" most people do not understand, so the editor summarizes the following content, detailed content, clear steps, and has a certain reference value. I hope you can get something after reading this article. Let's take a look at this "php definition and methods of using constants".
Differential description
1. Const is a language structure, define () is a function, and const compiles faster than define ().
2. Define () declares constants. Constant names are string types, can be dynamically concatenated, and can be named with expressions. Const can only use ordinary constant names.
The constant defined by the const keyword is case-sensitive, and the define () function can determine whether it is case-sensitive by a third argument.
Example