欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  php教程

PHP类 const常量访问方法例子

程序员文章站 2022-04-09 14:13:21
...
在php中定义常量我们使用的是const来定义了并且const定义常量是不需要$符号了,如果使用$就是变量 了哦,下面我来一起来看看类 const常量访问.

例子,const常量访问,代码如下:

class Math { 
   const num=3.14; 
	
   public function showNum(){ 
	   return self::num; 
   }   
} 
echo Math::num."
"; $math=new Math(); echo $math->showNum();

例子,变量访问,代码如下:

class Math { 
   const num=3.14; 
   var   $abc='aa'; 
   public function showNum(){ 
	   return self::num; 
   } 
} 
echo Math::abc."
";

提示:Fatal error: Undefined class constant 'abc' in E:xxx1.php on line 12

总结:所以const是定义变量可以使用Math::num来访问而 var定义的内部变量使用Math::num访问时就会提示变量未定义了哦.


永久链接:

转载随意!带上文章地址吧。