PHP oops中const关键字

const关键字 常量是变量的一种类型,我们可以使用关键字const为任何类定义变量。 分配后,这些变量的值将…

const关键字

  • 常量是变量的一种类型,我们可以使用关键字const为任何类定义变量。
  • 分配后,这些变量的值将无法更改
  • 类常量与普通变量不同,因为我们不需要$来声明类常量。
  • 如果我们在类内部,则可以使用self关键字获取常量的值,但是访问类外部的值则必须使用Scope Resolution Operator

例子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;
?>

输出:

类别:PHP 技巧

本文收集自互联网,转载请注明来源。
如有侵权,请联系 wper_net@163.com 删除。

评论 (0)COMMENT

登录 账号发表你的看法,还没有账号?立即免费 注册