首页 > 网站 > 建站经验 > 正文

phpcms v9 get调用热门文章的自定义调用办法

2024-04-25 20:35:27
字体:
来源:转载
供稿:网友

第一种:

{pc:get sql="SELECT * FROM `v9_news` a, `v9_hits` p WHERE a.catid=$catid and a.status=99 and a.inputtime > UNIX_TIMESTAMP()-7*3600*24 and CONCAT( 'c-1-', a.id ) = p.hitsid ORDER BY p.weekviews DESC" num="15"}

{loop $data $r}

{date('d', $r[inputtime])}日 {str_cut($r[title],38)}

{/loop}

{/pc}

//其中 c-1-中的1代表MODELID 请更换成你自己的模型ID ,经测试此方法超占MYSQL资源

第二种:

SELECT a.title,a.url FROM v9_news a,v9_hits b WHERE a.id = substr(b.hitsid,5) AND status = 99 ORDER BY b.views DESC

//注意:substr(b.hitsid,5)的意思是截取v9_hits表里hitsid字段值第5个字符起至结束,请按实际情况修改,如果你的站点ID是两位数,那么这里你要从第6个字符开始,完美一点再加个 a.catid=b.catid

 

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表