class Person{
//static关键字
public static $hand ="手";
public static $foot ="脚";
public static function work(){
return "你是不是很冷";
}
}
//直接实例化
echo(Person::$foot); //脚
echo(Person::work()); //你是不是很冷
//static关键字
public static $hand ="手";
public static $foot ="脚";
public static function work(){
return "你是不是很冷";
}
}
//直接实例化
echo(Person::$foot); //脚
echo(Person::work()); //你是不是很冷
2017-10-18