迅睿CMS框架是一款PHP8高性能·简单易用的CMS开源开发框架,基于MIT开源许可协议发布,免费且不限制商业使用,是免费开源的产品,以万端互联为设计理念,支持的微信公众号、小程序、APP客户端、移动端网站、PC网站等多终端式管理系统。
联系官方销售客服
1835022288
028-61286886
模板标签里面
查询判断当前登录用户是否收藏了这篇文章?用 table 查询吗?
这个操作走了缓存吗?每篇文章都查一次哦?好痛苦!感觉很消耗资源
{table table=1_news_favorite uid=$member.id cid=$id}
{$t.id}
{/table}
{table table=1_news_favorite uid=$member.id cid=$id cahe=缓存时间}
{function name=my_favorites param=$member.id cache=0 return=f}{$f}{/function}
function my_favorites($id) { // 这里是写查询 $rt = \Phpcmf\Service::M()->db->table('dr_1_news_favorite')->where('uid', $id)->get(); if ($rt) { $rows = $rt->getResultArray(); return $rows; } }
{table table=1_news_favorite uid=$member.id cache=3600} {php $my_favorites[] = $t.cid;} {/table} <?php if(in_array($cid, $my_favorites)){ echo '在数组中存在'; } else { echo '在数组中不存在'; } ?>
{function name=my_favorites param=$member.id,$id cache=1110 return=f} {if $f} ok {else} no {/if} {/function}
function my_favorites($param) { // 这里是写查询 list($uid, $cid) = explode($param); return \Phpcmf\Service::M()->table('dr_1_news_favorite')->where('uid', (int)$uid)->where('cid', (int)$cid)->counts();;}
{function name=my_favorites param=1,2 cache=1110 return=f} {if $f} ok {else} no {/if} {/function}
{table table=1_news_favorite uid=$member.id cid=$id cahe=缓存时间}
{$t.id}
{/table}