类的const常量

demo1:
class test{
const PROVINCE = ‘安徽’;
public function getinfo(){
return self::PROVINCE;
}

}
$model = new test();
$info = $model->getinfo();
echo $info;

demo2、
class test2{
const CITY = ‘淮南’;
public static function getinfo(){
return self::CITY;
}
}
echo test2::getinfo();

猜你喜欢

转载自blog.csdn.net/weixin_40974880/article/details/83106738