关于本站
“最难不过坚持”
本人承接扒站仿站,php网站维护,病毒查杀,网站编辑,网站改版,html制作
有需要网站维护,改版,病毒查杀,网站编辑,网站备案,html制作等相关的工作可以联系我。
本人有多年相关工作经验,也可提供免费咨询,交个朋友。
有需要探讨问题的朋友,也可以加我微信,共同探讨!
微信:15011482830 QQ:408917339
2655
39
分类目录
最新评论
- https://jueru.net/
-
- :weixiao:
-
- :shuijiao: :weiqu: :zhenbang: :leng:
-
- :yiwen: :yiwen: :yiwen: :yiwen:
-
- 这个业务逻辑多少都有点奇怪了,阅读浏览次数增值在新闻详情页的控制器方法里setInc,这怎么还写进模型事件里了。如果非要用onAfterRead也可以,把新闻文章的内容单独分出来一个news_content表,然后把它和news做关联,然后给news_content表的onAfterRead事件做增值处理,这样点进新闻页内查询到文章内容时才会触发它。
-
文章标签更多
打开边栏(ESC)
关闭边栏(ESC)
/* 一般情况 */ public function get(){ return $this->where("id=".(int)I('id'))->find(); } /* 获取信息后拆分多图 */ public function get(){ $m = M('products'); $rs = $m->where("productId=".(int)I('id'))->find(); if($rs['productImg2']!='')$rs['productImg2'] = explode(',',$rs['productImg2']); return $rs; } /* 获取信息后,需要获取另外一个表的信息 */ public function get(){ $rs = $this->where("productId=".(int)I('id'))->find(); //获取关联的分类 $sql = "select * from __PREFIX__goods_cat_products where productId=".(int)I('id'); $catproducts = $this->query($sql); if(!empty($catproducts)){ foreach ($catproducts as $key => $v){ $rs['catproducts_'.$v['catId']] = 1; } } return $rs; } /* 通过关联表获取信息 */ public function get(){ $id = (int)I('id'); $sql = "select a.*,aa.content,aa.id from __PREFIX__faqs a left join __PREFIX__faq_answers aa on a.faqId=aa.faqId and aa.isMaster=1 where a.faqId=".$id; return $this->queryRow($sql); }
赏
相关推荐
ThinkPHP 3.2.3 Runtime\Logs日志文件太多怎么关闭日志功能
'LOG_RECORD' => false, // 默认不记录日志
'LOG_TYPE' => 'File', // 日志记录类型 默认为文件方式
'LOG_LEVEL' => 'EMERG,ALERT,CRIT,ERR',// 允许记录的...
ThinkPHP3.2.3打印sql语句
方法一
echo M()->getLastSql();
方法二
echo M()->_sql();
评论加载中...
前一篇: Thinkphp图片水印和文字水印
后一篇: thinkphp获取数组大小