class Car {
public $speed = 0;
//增加speedUp方法,使speed加10
public static function speedUp(){
$this->speed+=10;
}
$car = new Car();
Car::speedUp();
echo $car->speed;
使用静态方法 不需要new
在PHP里,有static修饰的变量和函数不能出现$this。
爱学习的大佬,我关注一下,对象和类啥的我也不懂