设置首页模版ThinkPHP笔记
(1)控制器设置:/app/Home/Controller/IndexController.class.php
<?php
namespace Home\Controller;
use Think\Controller;
class IndexController extends Controller {
&nbs...
(1)控制器设置:/app/Home/Controller/IndexController.class.php
<?php
namespace Home\Controller;
use Think\Controller;
class IndexController extends Controller {
public function index(){
$this->name = 'thinkphp'; // 进行模板变量赋值
$this->display();
}
}
(2)首页模版:/app/Home/View/Index/index.html
<html>
<head>
<title>hello {$name}</title>
</head>
<body>
hello, {$name}!
</body>
</html>
我要评论