时间:2021-07-01 10:21:17 帮助过:6人阅读
第一节介绍了thinkphp基本路径问题,第二节将介绍thinkphp的常见用法(M层跟V层)
我们先在Controller层新建个IndexController.class.php(新建文件的格式为xxxController.class.php,建议首字母大写)其他写法,框架将不识别为控制器文件
新建个index函数
php
namespace Home\Controller;
use Think\Controller;
class IndexController extends Controller {
public function index(){
$this->assign('variable',"
输出变量到模板中"); //assign的作用是将控制器的变量输出到V层
$this->display();//assign完后一定要display一下才能输出到模板中
}
然后我们在View文件夹中新增个Index文件夹(名称要与控制器名称一致,比如AaaController的控制器就要新建个Aaa文件夹),在Index里面新建个index.html文件(这名字要与Index控制器中display的函数名一致),输入以下代码:
DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Documenttitle>
head>
<body>
{$variable}
body>
html>
{$xxx} 这可以
输出controller中assign的变量,这时我们在url输入http://localhost/你的文件夹名/index.php?m=Home&c=Index&a=index,将会出现“输出变量到模板”这几个字,这样就实现了输出变量到模板中。这个非常常用!!
http://www.bkjia.com/PHPjc/1110978.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/1110978.htmlTechArticlethinkphp基础入门(2),thinkphp基础入门 第一节介绍了thinkphp基本路径问题,第二节将介绍thinkphp的常见用法(M层跟V层) 我们先在Controller层新建...