显示投票最多的帖子
我正在使用 ThumbsUp V2 投票脚本,我正在尝试显示基于票数:
<?php $items = ThumbsUp::items()->orderby('votes_total')->get() ?>
这些值存储在 mysql 中,所以我想到:
$display = mysql_query("SELECT * FROM banat");
$items = ThumbsUp::items($display)->orderby('votes_total')->get() ;
但我认为我肯定做错了,因为它只是显示输出:
Array
I'm using ThumbsUp V2 Voting Script and i'm trying to display the posts based on the number of votes:
<?php $items = ThumbsUp::items()->orderby('votes_total')->get() ?>
The values are stored in mysql so i thought of:
$display = mysql_query("SELECT * FROM banat");
$items = ThumbsUp::items($display)->orderby('votes_total')->get() ;
But i thik i've definitely done this wrong since it's just displaying an output:
Array
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您获得一个数组,则必须对其进行循环以显示数据。您不能只对数组形式的 var 执行
echo
。你应该有这样的东西:If you get an array, you must loop on it to show the data. You cannot just do an
echo
on a var that is an array. You should have something like this:你的
$items
是一个数组,我假设你试图相反,你需要循环它:
如果你只期望
$items
保存一件事,那么就做:Your
$items
is an array, and I assumed you attempted toInstead you will need to loop over it:
If you only expect
$items
to hold one thing, then just do: