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

来源:3-5 [MVC实例]演示程序的效果并总结

look双

2016-02-06 15:54

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


写回答 关注

4回答

  • 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

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

    look双

    是呀!!

    2016-02-16 10:09:32

    共 1 条回复 >

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

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

MVC架构模式分析与设计

通过学习MVC理论知识,由浅入深带您实现人生第一个MVC框架

82396 学习 · 929 问题

查看课程

相似问题