积累

<span style="font-family:SimSun;font-size:14px;">http://www.2cto.com/kf/201411/348734.html(解决excel导出的问题)

http://blog.sina.com.cn/libinemail

http://yiifans.com/forum.php?mod=viewthread&tid=14031&extra=

http://www.phpxs.com/post/yii2/3    //全网址

https://www.douban.com/note/332510501/
https://github.com/dreamsoday/dream
转 push本地代码到github出错

https://github.com/2689182194/sunny    windows下边的github

http://www.php100.com/html/program/nginx/2013/0905/5525.html   负载均衡

http://blog.csdn.net/yafei450225664/article/details/41543591    //yiiAR类的增删改查

http://www.cnblogs.com/jianglan/archive/2013/05/31/3108646.html  //调用百度地图自动获取经纬度接口

http://www.php100.com/cover/php/62.html  //php100函数

<?php $model->group_isshow = $arrone['group_isshow']; echo $form->field($model, 'group_isshow')->radioList(['1' => '显示', '0' => '隐藏'])->
        label("是否显示") ?>//yii单选框的默认选中

<?= $form->field($model,'series_name',['inputOptions' =>['placeholder'=>'请输入分类名称']])->label("分类名称") ?>

<?= $form->field($model, "group_id")->hiddenInput(["value" => $arrone->group_id])->label("") ?> //yii框架中的隐藏域
http://www.codefans.net/articles/99.shtml生成缩略图


Yii  2016-3-23
1.类的延迟加载 使整个框架更快的加载类
   Function my_load($class){
   Require(‘class\\$class.php’);
   Require(‘class\Class2.php’);
   
   }
   Spl_autoload_register(my_load)//yii自动加载yii封装好的
2.类的映射 用class map表示,使用类的映射表能更快的加载类

3.组件的延迟加载
   Index.php->应用主题->加载组件components(session/request/response....)->controller
   
   Session组件通过__get()方法去加载组件(没有必要一开始就加载组件,真正的使用时候在
进行加载,提高程序的执行效率)
 			//yii中的表单验证,继承model类
2016-3-24
4.缓存数据的有效期设置
   //获取缓存组件
   $cache = \Yii::$app->cache;
   //有效期缓存时间为15秒
   $cache->add(‘key’,’hello world’,15);//添加缓存并且设置时间
   $cache->set(‘key’,’hello world’,15);//添加缓存并且设置时间
   
   Echo $cache->get(‘key’);//取出缓存,15秒之后消失
   数据缓存的增删改查
   </span>

你可能感兴趣的:(积累)