摘要: 1 'yii\filters\PageCache', //页面缓存11 'duration'=>1000,//缓存时间12 'only'=>['index','test'], //缓存的页面13 'de... 阅读全文
posted @ 2015-08-26 16:29 todaytoday 阅读(187) 评论(0) 推荐(0) 编辑
摘要: 首先在controller中直接执行return $this->renderPartial('index');然后在相应的view中的index文件中: 1 beginCache('cache_div')){?> 2 3 这里待会会被缓存 4 5 endCache();} 7 ?> 8... 阅读全文
posted @ 2015-08-26 16:13 todaytoday 阅读(217) 评论(0) 推荐(0) 编辑
摘要: 1、缓存文件依赖1 $cache = \YII::$app->cache;2 $dependency = new \yii\caching\FileDependency(['fileName'=>'hw.txt']);3 $cache->add('file_key'... 阅读全文
posted @ 2015-08-26 15:11 todaytoday 阅读(196) 评论(0) 推荐(0) 编辑
摘要: 四十条测试你是否合格的PHP程序员,不官方,也不权威,但很给力。超过三条就不合格了。超过五条就得好好反省下自己的不足了。1. 不会利用如phpDoc这样的工具来恰当地注释你的代码2. 对优秀的集成开发环境如 EclipsePHP EPP 或 Zend Studio PDT视而不见3. 从未用过任何形... 阅读全文
posted @ 2015-08-26 14:41 todaytoday 阅读(986) 评论(0) 推荐(0) 编辑
摘要: 先看数据表中的关系是怎样的:customer表中的关系如下:order中的表为:先在customer中获得order的数据,并与之关联,在helloController.php中,代码如下 1 where(['name'=>'zhangsan'])->one();11 // $orde... 阅读全文
posted @ 2015-08-26 11:24 todaytoday 阅读(312) 评论(0) 推荐(0) 编辑