YII在默认配置下连接Memcache失败时会报错,要想实现故障转移就要改一下配置和代码1、首先修改一下YII的 caching/CMemCache.php,我的版本是 1.1.7找到$cache->addServer($server->host,$server->port,$server->per...
分类:
其他好文 时间:
2014-07-22 22:44:12
阅读次数:
158
在YII框架中如果访问的图片不存在,会记录大量的错误,于是我想了个办法,凡是访问不存在的图片,直接返回404,不经过YII框架location / { set $if_img N; if ($request_filename ~ (.*)\.(png|gif|jpg)){ set $if_img ....
分类:
其他好文 时间:
2014-07-22 22:42:16
阅读次数:
242
Bootstrap中包含了丰富的Web组件,根据这些组件,可以快速的搭建一个漂亮、功能完备的网站。 但是有时候我们网站前台并不需要Bootstrap,只要管理后台使用Bootstrap,那么该如何单独为一个module加载Bootstrap呢?...
分类:
其他好文 时间:
2014-07-22 22:32:36
阅读次数:
209
一:Yii framework 已经定义的命名空间常量 system: 指向Yii框架目录; ?Yii\framework zii: 指向zii library 目录; ?Yii\framework\zii application?: 指向应用程序基本目录;? protected\ webroot: 指向包含里...
分类:
其他好文 时间:
2014-07-22 08:16:35
阅读次数:
215
yii2中使用顶部导航的具体方法:1.视图中调用两个类:use yii\bootstrap\Nav;use yii\bootstrap\NavBar;2. 'My Company', 'brandUrl' => Yii::$app->homeUrl, 'options' => [ 'class' =...
分类:
其他好文 时间:
2014-07-22 00:27:36
阅读次数:
474
定义一个新的AR类MyActiveRecord并继承CActiveRecord类,然后定义日志处理事件RecordLog: public?function?RecordLog($objEvent)?{?
??????//记录日志操作,需要在各个类中各自实现
} ? 2. 在类初始化...
分类:
其他好文 时间:
2014-07-22 00:05:36
阅读次数:
224
正在需要的时候发现了这个大牛的博文,动手实践过后,记录在此。 --user表
Create?Table:?CREATE?TABLE?`user`?(
??`id`?int(11)?NOT?NULL?AUTO_INCREMENT,
??`username`?varchar(45)?DEFAULT?N...
分类:
其他好文 时间:
2014-07-21 10:24:59
阅读次数:
239
redirect 这个方法是在 CController 里定义的先来看下官方介绍redirect()方法public voidredirect(mixed $url, boolean $terminate=true, integer $statusCode=302)$urlmixedthe URL ...
分类:
其他好文 时间:
2014-07-19 17:38:39
阅读次数:
219
CDbConnection:path:/framework/db/CDbConnection.phpoverview:CDbConnection represents a connection to a database.工作原理:CDbConnection works together with ...
分类:
数据库 时间:
2014-07-18 18:38:26
阅读次数:
196