PHP Const 关键字
- 常量是一种类型的变量,我们可以使用关键字 const 在任何类中定义。
- 分配后,这些变量的值无法在任何情况下进行更改。
- 类常量与普通变量不同,因为我们不需要使用 $ 来声明类常量。
- 如果我们在类内部,可以使用 self 关键字来获取常量的值,但是如果在类外部访问值,必须使用作用域解析运算符。
示例1
<?php
//create class
class javatpoint
{
//create constant variable
const a= "This is const keyword example";
}
//call constant variable.
echo javatpoint::a;
?>
输出:
示例2
<?php
//create class
class demo
{
//create constant variable
const a= 10;
}
//call constant variable.
echo demo::a;
?>
输出: