PHP类常量的常见访问方法
class Math {
const num=3.14;
public function showNum(){
return self::num;
}
}
echo Math::num."<br/>";
$math=new Math();
echo $math->showNum();
结果:
3.14
3.14
时间: 2024-10-13 16:12:37
PHP类常量的常见访问方法
class Math {
const num=3.14;
public function showNum(){
return self::num;
}
}
echo Math::num."<br/>";
$math=new Math();
echo $math->showNum();
结果:
3.14
3.14