class Person{
//static關(guān)鍵字
public static $hand ="手";
public static $foot ="腳";
public static function work(){
return "你是不是很冷";
}
}
//直接實(shí)例化
echo(Person::$foot); //腳
echo(Person::work()); //你是不是很冷
//static關(guān)鍵字
public static $hand ="手";
public static $foot ="腳";
public static function work(){
return "你是不是很冷";
}
}
//直接實(shí)例化
echo(Person::$foot); //腳
echo(Person::work()); //你是不是很冷
2017-10-18
運(yùn)行const TWO = self::ONE +1報錯的可以試一下更換php版本,5.6可以
2017-10-17