程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> Yii2.0學習筆記:第一個頁面Saying Hello,yii2.0saying

Yii2.0學習筆記:第一個頁面Saying Hello,yii2.0saying

編輯:關於PHP編程

Yii2.0學習筆記:第一個頁面Saying Hello,yii2.0saying


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

<?php
use yii\helpers\Html;
?>
<?= Html::encode($message) ?>

訪問你的第一個頁面,url/basic/web/index.php?r=test%2Fsay,test是控制器,say是方法

  注意了,頭文件是自帶的,以後介紹這麼修改。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved