YII2學習筆記 20150724 1

2021-07-04 01:49:58 字數 508 閱讀 5736

一、設定yii專案金鑰

檔案在於yii=》config=》web.php

$config = [

'id' => 'basic',

'basepath' => dirname(__dir__),

'bootstrap' => ['log'],

'components' => [

'request' => [

'cookievalidationkey' => '使用者所填金鑰',

],];

二、gii快速生成**

1.配置gii

檔案在於yii=》config=》web.php

if (yii_env_dev)
該配置意思是當專案處於開發模式時,包含gii模組,模組類是 [[yii\gii\module]]。

2.訪問方法

http://網域名稱/yii/web/index.php?r=gii

YII2 學習筆記

2 yii 所有一切都是 components 3 service locator和di 是yii 的核心 4 配置檔案中的 commponts 配置項為類的屬性鍵值對,特殊配置項 on as 開頭的,on 開頭為事件,as 開頭是定義類的行為。behaive 5 yii 有一些預設的 compon...

YII2 學習筆記 RBAC

1 配置使用者 model 實現介面 yii web identityinte ce 2 配置檔案 components authmanager class yii rbac dbmanager user 指定使用者模組的驗證類 identityclass api models members 這裡...

yii2學習筆記 yii2引入微信API

其中url為你需要測試的伺服器介面,token自己隨便填乙個,只是在伺服器端驗證的時候設定得一樣就行 define token weixin 需要定義自己的token,與填寫的資訊一致 public class weixincontroller extends controller public f...