class Car
    {
      var $color;
      function __construct($color="green") {
        $this->color = $color;
      }
      function what_color() {
        return $this->color;
      }
    }

 

 posted on 2022-10-11 15:08  boye169  阅读(6)  评论(0编辑  收藏  举报