php子类调用父类的常量
答案:3 悬赏:80 手机版
解决时间 2021-03-26 06:36
- 提问者网友:那叫心脏的地方装的都是你
- 2021-03-25 14:11
php子类调用父类的常量
最佳答案
- 五星知识达人网友:躲不过心动
- 2021-03-25 14:25
class Base{
const MSG = 'hello , world!';
}
class Son extends Base{
static function showMsg(){
echo parent::MSG;
}
}
Son::showMsg(); // output : hello , world!
const MSG = 'hello , world!';
}
class Son extends Base{
static function showMsg(){
echo parent::MSG;
}
}
Son::showMsg(); // output : hello , world!
全部回答
- 1楼网友:鸽屿
- 2021-03-25 16:33
parent::常量名称
- 2楼网友:神也偏爱
- 2021-03-25 16:04
使用 类名::常量名 来调用常量
我要举报
如以上问答信息为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
大家都在看
推荐资讯