摘要:
mark一下 http://club.topsage.com/forum.php?mod=viewthread&tid=2272486 阅读全文
摘要:
mark一下 http://club.topsage.com/forum.php?mod=viewthread&tid=2272486 阅读全文
摘要:
yii的relations里self::BELONGS_TO默认是用当前指定的键跟关联表的主键进行join,例如: return array('reply' => array(self::BELONGS_TO, 'BookPostReply', 'postid'),);默认生成的sql是 on id = postid,id是BookPostReply的主键。但今天我遇到的需求却是需要生成 on B... 阅读全文
摘要:
<?phpYii::app()->user->setFlash(‘success’,”Data saved!”); 设置键值名为success的临时信息.在getFlash后删除. 可以定义多种不同的键值名对象的消息.?> <?php if(Yii::app()->user->hasFlash(‘success’)):?> 消息存在里,<div><?php echo Yii::app()->us... 阅读全文
摘要:
db组件 'schemaCachingDuration'=>3600, 为什么不起做用?需要开缓存 如何在页面下边显示sql的查询时间在log组件的routes中加入 array('class'=>'CProfileLogRoute','levels'=>'error, warning',)同时在db组件中加入'enableProfiling'=>true,同时在这种情况下,可以用CDbConne... 阅读全文
|