這次帶給大家yii框架配置controller與action步驟詳解,yii框架配置controller與action的注意事項有哪些,下面就是實戰案例,一起來看一下。
在yii框架中,設定預設controller
在/protected/config/main.php新增設定
<?php return array( 'name'=>'Auto', 'defaultController'=>'auto',
上述配置了預設的controller為AutoController.php
在yii框架中,設定預設action
在AutoController.php中設定
class AutoController extends CController { public $defaultAction = 'test'; public function actionTest() { }
此時存取xxxx/index.php,會預設到xxxx/index.php? r=auto/test,表示設定成功。
相信看了本文案例你已經掌握了方法,更多精彩請關注php中文網其它相關文章!
推薦讀取:
以上是yii框架配置controller與action步驟詳解的詳細內容。更多資訊請關注PHP中文網其他相關文章!