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是方法
注意了,頭文件是自備的,以後介紹這麼修改。