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