lyyylll
2018-11-24 16:59
<?php
class Car{
function _construct(){
print "构造函数";
}
function _destruct(){
print "析构函数";
}
}
class Bus extends Car{
function _construct(){
print "子类构造";
parent::_construct();
}
}
$car =new Car();
$bus =new Bus();
因为你的代码并没有跟课程设定的去走所以才会输出错误
我试了一下,并没有错误
PHP进阶篇
181835 学习 · 2577 问题
相似问题