为了账号安全,请及时绑定邮箱和手机立即绑定
<?php
class Car {
    public $speed = 10;

    //在这里使用重载实现speedDown方法
    public function __call($name, $args){
        if($name == 'speedDown'){
            $this->speed += -10;
        }
    }
    // public function speedDown(){
    //     return $this-> speed+=-10;
    // }
    //让它等于10就可以通过。
}
$car = new Car();
$car->speedDown(); //调用不存在的speedDown方法
echo $car->speed;

--!

正在回答

0 回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信