代码出问题了。。。
<?php
class Car {
public $speed = 0;
public static function speedUp(){
$this->speed += 10;
}
}
echo Car::speedUp();
?>各位大神救救这个代码吧,感谢~
<?php
class Car {
public $speed = 0;
public static function speedUp(){
$this->speed += 10;
}
}
echo Car::speedUp();
?>各位大神救救这个代码吧,感谢~
2017-08-28
举报