2 回答
snowmanJS
TA贡献89条经验 获得超53个赞
<?php
header("Content-Type:text/html;Charset=utf-8");
class fruits{
const Name="apple";
static function getInfo(){
echo "<br/>调用静态方法和属性用类名::方法 类名::属性 ";
}
}
echo fruits::Name;
fruits::getInfo();
?>
输出为:
apple
调用静态方法和属性用类名::方法 类名::属性
- 2 回答
- 0 关注
- 1288 浏览
添加回答
举报
0/150
提交
取消