亚洲国产日韩欧美一区二区三区,精品亚洲国产成人av在线,国产99视频精品免视看7,99国产精品久久久久久久成人热,欧美日韩亚洲国产综合乱

自動加載類案例

Original 2019-05-04 18:11:44 274
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 ,下次連同載入文件,也上傳。繼續(xù)加油。

Release Notes

Popular Entries