自动加载类案例

Original 2019-05-04 18:11:44 267
abstract:<?php //include  'public/Car.php'; //include  'public/Mobile.php'; //自动加载器 spl_autoload_register(function($className){     require &nbs
<?php
//include  'public/Car.php';
//include  'public/Mobile.php';

//自动加载器
spl_autoload_register(function($className){
    require  'public/'.$className.'.php';
});


$car = new Car();
$mobile = new Mobile('苹果','ip8plus',6800);

echo $car->brand.$car->model.$car->price,"<br>";
echo $mobile->brand.$mobile->model.$mobile->price,"<br>";


?>


Correcting teacher:查无此人Correction time:2019-05-05 09:28:03
Teacher's summary:完成的不错。但是没看到car.pjp和mobile.php ,下次连同载入文件,也上传。继续加油。

Release Notes

Popular Entries