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ù)加油。