生活随笔
收集整理的這篇文章主要介紹了
YII 配置文件
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
用YIIFramework的庫開發
Java代碼??
....??Yii::createWebApplication($config);??? Yii::import(class1,true),在將class1類文件路徑存儲時,同時include該文件
?
Java代碼??
<?php????????????$config?=?array(??????????????????'basePath'?=>?dirname(__FILE__)?.?DIRECTORY_SEPARATOR?.?'..',????????????????????'name'?=>?'My?website',????????????????????'aliases'?=>?array(??????????'myExternalFramework'?=>?dirname(__FILE__)?.?DIRECTORY_SEPARATOR?.?'..'?.?DIRECTORY_SEPARATOR?.?'..'?.?DIRECTORY_SEPARATOR?.?'myexternalframework'??????),????????????'catchAllRequest'?=>?array('site/all'),??????????????'onBeginRequest'?=>?'function',??????????????'controllerMap'?=>?array('myController'?=>?'myExternalFramework.controllers.MyController'),??????????????'defaultController'?=>?'site',??????????????'language'?=>?'es',??????????????'sourceLanguage'?=>?'es',??????'timeZone'?=>?'Asia/Shanghai',??????'theme'?=>?'default',????????????'charset'?=>?'utf-8',??????????????'preload'?=>?array('log'),??????????????'import'?=>?array(??????????'application.models.*',??????????'application.components.*',??????),??????????????'params'?=>?require(dirname(__FILE__)?.?'/params.php'),??????????????????????????'components'?=>?array(????????????????????'assetManager'?=>?array(????????????????????????????'basePath'?=>?dirname(__FILE__)?.?'/../../assets/',????????????????????????????'baseUrl'?=>?'/web/assets/'??????????),??????????'request'?=>?array(??????????????'enableCsrfValidation'?=>?true,???????????????'enableCookieValidation'?=>?true,???????????),????????????????????'cache'?=>?array(??????????????'class'?=>?'A?cache?class,?like:?system.caching.CApcCache',??????????),??????????'session'?=>?array(???????????????'class'?=>?'CCacheHttpSession',??????????????'autoStart'?=>?1,??????????????'sessionName'?=>?'frontend',??????????????'cookieParams'?=>?array('lifetime'?=>?'3600',?'path'?=>?'/',?'domain'?=>?'.test.com',?'httponly'?=>?'1'),??????????????'cookieMode'?=>?'only',??????????),??????????????????????????????'clientScript'?=>?array(??????????????'scriptMap'?=>?array(??????????????????'register.js'?=>?'site.min.js',??????????????????'login.js'?=>?'site.min.js',??????????????),??????????),????????????????????'clientScript'?=>?array(??????????????'scriptMap'?=>?array(??????????????????'register.js'?=>?'register.js',??????????????????'login.js'?=>?'login.js',??????????????),??????????),??????),??);??$database?=??require(dirname(__FILE__)?.?DIRECTORY_SEPARATOR?.?'db.php');??if?(!empty($database))?{??????$config['components']?=?CMap::mergeArray($config['components'],$database);????}??return?$config;?? db.php
Java代碼??
<?php??return?array(??????'db'?=>?array(??????????'connectionString'?=>?'mysql:host=192.168.1.240;dbname=tttt',??????????'emulatePrepare'?=>?true,??????????'username'?=>?'root',??????????'password'?=>?'****',??????????'charset'?=>?'utf8',??????),??????'card'?=>?array(??????????'class'?=>?'CDbConnection',??????????'connectionString'?=>?'mysql:host=192.168.1.240;dbname=card',??????????'emulatePrepare'?=>?true,??????????'username'?=>?'root',??????????'password'?=>?'**',??????????'charset'?=>?'utf8',??????),??);?? params.php
Java代碼??
<?php??return?array(??????'adminEmail'=>'info@example.com',??????'pagesize'=>'100',??????'pager'=>array(??????????'class'=>'PagerWidget',???????????'maxButtonCount'=>8,??????????'firstPageLabel'=>'首頁',??????????'lastPageLabel'=>'末頁',??????????'nextPageLabel'=>'下一頁',??????????'prevPageLabel'=>'上一頁',??????????'header'=>'',??????????'cssFile'=>false,???????),???);??? index.php?
配置環境常量,不同環境調用不同配置文件和調試級別。
Java代碼??
????defined('APP_ENV')?or?define('APP_ENV','development');??????if?(APP_ENV?==?'production')?{??????error_reporting(0);??????$yii=dirname(__FILE__).'/framework/yiilite.php';??????defined('YII_TRACE_LEVEL')?or?define('YII_TRACE_LEVEL',1);??}?else?{??????$yii=dirname(__FILE__).'/framework/yii.php';????????????defined('YII_DEBUG')?or?define('YII_DEBUG',true);????????????defined('YII_TRACE_LEVEL')?or?define('YII_TRACE_LEVEL',3);??}??$config=dirname(__FILE__).'/protected/config/'.APP_ENV.'.php';??require('path/to/globals.php');???require_once($yii);??Yii::createWebApplication($config)->run();?? development.php?
開啟weblog,profile,數據庫性能顯示,數據庫查詢參數記錄,GII
production.php?
開啟數據庫結構緩存,關閉錯誤顯示
Java代碼??
<?php??return?CMap::mergeArray(??????require(dirname(__FILE__).'/main.php'),??????array(??????????'components'=>array(????????????????????????????'log'=>array(??????????????????'class'=>'CLogRouter',??????????????????'routes'=>array(??????????????????????array(??????????????????????????'class'=>'CFileLogRoute',??????????????????????????'levels'=>'error,?warning',??????????????????????)??????????????????),??????????????),??????????),??????)??); ?
總結
以上是生活随笔為你收集整理的YII 配置文件的全部內容,希望文章能夠幫你解決所遇到的問題。
如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。