php控制器就是指MVC中的C,即Controller,其控制器的作用通常是获取模型(Model)中数据并交给视图(View)去显示。
本文操作环境:Windows7系统、PHP7.1、Dell G3。
php控制器是什么意思?
PHP中控制器(Controller)层的实现
控制器(Controller)的作用通常是在获取模型(Model)中数据并交给视图(View)去显示,那开发中我们应该如何去写呢?
getList(); // $m_match2 = Factory::M('MatchModel'); // 载入负责显示的html文件 require './template/match_list_v.html'; } /** * 比赛删除 */ public function removeAction(){ } }
为了能让index.php去执行我们要操作的动作,应该传给index.php一些参数,来告诉入口文件怎么做。
假如我们要在比赛列表(比赛Controller)中删除一条比赛信息,可以这样传参给index.php:
index.php?c=match&a=remove&id=N
相应的HTML文件应该这样写:
index.php:
$action_name();//可变方法
推荐学习:《PHP视频教程》
Das obige ist der detaillierte Inhalt vonphp控制器是什么意思. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!