Controller目录下创建TestController.php
复制下面代码,yii跟tp一样,全程命名空间
<?php namespace app\controllers; use yii\web\Controller; class SiteController extends Controller { // ...existing code... public function actionSay($message = 'Hello World') { return $this->render('say', ['message' => $message]); } }
视图文件夹创建test文件夹,在文件夹下创建say.php
复制以下代码到say.php
<?<span style="color: #000000;">php use yii\helpers\Html; </span>?> <?= Html::encode($message) ?>
访问你的第一个页面,url/basic/web/index.php?r=test%2Fsay,test是控制器,say是方法
注意了,头文件是自带的,以后介绍这么修改。