在Php中构建概念不清楚

时间:2017-05-11 14:23:38

标签: php oop

为什么要调用类Cars的构造,因为我没有为Cars类创建对象?

<?php 


class Cars{

function __construct(){

echo "i am cars";

}

}


class SmallCars extends Cars{


}

$car = new SmallCars();

 ?>

0 个答案:

没有答案