为了账号安全,请及时绑定邮箱和手机立即绑定

为啥什么都没显示……也没报错……说好的hello world呢!

<?php

	class testController{
		function show(){ //控制器的作用时调用模型,并调用视图,将模型产生的数据传递给视图,并让相关视图去显示
			$testModel = new testModel();
			$data = $testModel->get();
			$testView = new testView();
			$testView->$display($data);
		}
	}


?>
<?php

	class testModel{
		function get(){ //模型的作用时获取数据并处理返回数据
			return "Hello World!";
		}
	}

?>

testView.class.php

<?php

	class testView{
		function display($data){ //视图的作用时将取得的数据进行组织,美化等,并最终向用户终端输出
			echo $data;
		}
	}

?>
<?php

//如果有错,include()报一个警告
//如果有错,require_once()报一个严重错误

require_once('testController.class.php');
require_once('testModel.class.php');
require_once('testView.class.php');

$testController = new testController();
$testController->show();

?>


正在回答

1 回答

testController里的这个地方 $testView->$display($data); 写错了,应该是$testView->display($data);

0 回复 有任何疑惑可以回复我~
#1

全民工作狂 提问者

果然!谢谢老师!
2015-09-30 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

为啥什么都没显示……也没报错……说好的hello world呢!

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信