網頁上一片空白什么都沒有是怎么回事呀
<?php
class testController{
function show(){
$testModel = new testModel();
$data = $testModel -> get();
$testView = new testView();
$testView -> display($date);
}
}
?>
<?php
class?testModel{
function?get(){
return?"hello?world";
}
}
?><?php
class?testView{
function?display($date){
echo?$date;
}
}
?><?php
require_once('testController.class.php');
require_once('testModel.class.php');
require_once('testView.class.php');
$testController?=?new?testController();
$testController->show();
?>
2021-03-21
data
2016-02-19
打開php報錯了嗎,是否是錯誤,沒有顯示呢
2016-02-14
你所有的文件是不是都放在同一個目錄中?
2016-02-14
你所有的文件是不是都放在同一個目錄中?