问答详情
源自:3-5 [MVC实例]演示程序的效果并总结

网页上一片空白什么都没有是怎么回事呀

<?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();
?>


提问者:look双 2016-02-06 15:54

个回答

  • qq_糊涂仙
    2021-03-21 20:28:12

    data

  • 诺亚慈航
    2016-02-19 00:59:31

    56c5f83600017ba605000188.jpg

    56c5f8360001450905000203.jpg

    56c5f8360001e2fd05000189.jpg

    56c5f836000173c105000198.jpg

    打开php报错了吗,是否是错误,没有显示呢


  • notbadman
    2016-02-14 16:23:38

    你所有的文件是不是都放在同一个目录中?

  • notbadman
    2016-02-14 16:23:08

    你所有的文件是不是都放在同一个目录中?