国内最全IT社区平台 联系我们 | 收藏本站
华晨云阿里云优惠2
您当前位置:首页 > 互联网 > [置顶] yii 1.0配置文件解析

[置顶] yii 1.0配置文件解析

来源:程序员人生   发布时间:2014-11-12 08:56:59 阅读次数:3434次

yii中配置文件主要是1个入口文件,然后

main.php


<?php // 取消下行的注释,来定义1个路径别名 // http://www.wfuyu.com/yii/::setPathOfAlias('local','path/to/local-folder'); // 这是 Web 利用配置的主体部份。任何可写的 // CWebApplication 属性可以在这里配置。 $config = array( // protected 目录的基础路径 // 使用 http://www.wfuyu.com/yii/::app()->basePath 来访问 'basePath' => dirname(__FILE__) . DIRECTORY_SEPARATOR . '..', // 利用的名字 // 使用 http://www.wfuyu.com/yii/::app()->name 来访问 'name' => 'My website', //路径别名 // 可以是利用内部的路径,也能够是外部资源 'aliases' => array( 'myExternalFramework' => dirname(__FILE__) . DIRECTORY_SEPARATOR . '..' . DIRECTORY_SEPARATOR . '..' . DIRECTORY_SEPARATOR . 'myexternalframework' ), //保护程序时,这模样所有的要求转发到1个地方 'catchAllRequest' => array('site/all'), //如何在利用程序处理要求之前履行1段操作?固然这个function方法要存在index.php 'onBeginRequest' => 'function', //controller path 'controllerMap' => array('myController' => 'myExternalFramework.controllers.MyController'), // 默许的 controller 'defaultController' => 'site', // 用户语言(for Locale) 'language' => 'es', //信息和视图的语言 'sourceLanguage' => 'es', 'timeZone' => 'Asia/Shanghai', 'theme' => 'default', // 使用的字符集 'charset' => 'utf⑻', // 预载入的利用组件 'preload' => array('log'), // 自动载入的类 'import' => array( 'application.models.*', 'application.components.*', ), // 可使用 http://www.wfuyu.com/yii/::app()->params['paramName'] 访问的利用级别的参数 'params' => require(dirname(__FILE__) . '/params.php'), // 在 params.php 中你需要返回这个数组:http://www.wfuyu.com/yii/::app()->setParams设置的只能用http://www.wfuyu.com/yii/::app()->params['xxx']这类数组的方式访问 // return array('adminEmail'=>'info@example.com'); // 利用组件的配置 'components' => array( // assets, 参考www.yiiframework.com/doc/api/CAssetManager 'assetManager' => array( // 改变磁盘上的路径 'basePath' => dirname(__FILE__) . '/../../assets/', // 改变url 'baseUrl' => '/web/assets/' ), 'request' => array( 'enableCsrfValidation' => true, //如果避免post跨站攻击 'enableCookieValidation' => true, //避免Cookie攻击 ), // 缓存 'cache' => array( 'class' => 'A cache class, like: system.caching.CApcCache', ), 'session' => array( // memcache session cache 'class' => 'CCacheHttpSession', 'autoStart' => 1, 'sessionName' => 'frontend', 'cookieParams' => array('lifetime' => '3600', 'path' => '/', 'domain' => '.test.com', 'httponly' => '1'), 'cookieMode' => 'only', ), // 你可使用 scriptMap 来配置脚本来自哪里。 // 对1个生产环境的配置,以下 'clientScript' => array( 'scriptMap' => array( 'register.js' => 'site.min.js', 'login.js' => 'site.min.js', ), ), // 对1个开发环境,可以这样做 '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); // http://www.wfuyu.com/yii/::app()->setComponents($database); } return $config;

db.php

<?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

<?php return array( 'adminEmail'=>'info@example.com', 'pagesize'=>'100', 'pager'=>array( 'class'=>'PagerWidget', 'maxButtonCount'=>8, 'firstPageLabel'=>'首页', 'lastPageLabel'=>'末页', 'nextPageLabel'=>'下1页', 'prevPageLabel'=>'上1页', 'header'=>'', 'cssFile'=>false, ), ); 

index.php 
配置环境常量,不同环境调用不同配置文件和调试级别。

/** * 利用程序环境,可选:development,production, */ defined('APP_ENV') or define('APP_ENV','development'); // change the following paths if necessary 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'; // remove the following lines when in production mode defined('YII_DEBUG') or define('YII_DEBUG',true); // specify how many levels of call stack should be shown in each log message 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); http://www.wfuyu.com/yii/::createWebApplication($config)->run();

development.php 
开启weblog,profile,http://www.wfuyu.com/db/性能显示,http://www.wfuyu.com/db/查询参数记录,GII

production.php 
开启http://www.wfuyu.com/db/结构缓存,关闭毛病显示

<?php return CMap::mergeArray( require(dirname(__FILE__).'/main.php'), array( 'components'=>array( // uncomment the following to use a MySQL database 'log'=>array( 'class'=>'CLogRouter', 'routes'=>array( array( 'class'=>'CFileLogRoute', 'levels'=>'error, warning', ) ), ), ), ) );


生活不易,码农辛苦
如果您觉得本网站对您的学习有所帮助,可以手机扫描二维码进行捐赠
程序员人生
------分隔线----------------------------
分享到:
------分隔线----------------------------
关闭
程序员人生