显示投票最多的帖子

发布于 2024-12-11 21:53:13 字数 463 浏览 0 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

菊凝晚露 2024-12-18 21:53:13

如果您获得一个数组,则必须对其进行循环以显示数据。您不能只对数组形式的 var 执行 echo。你应该有这样的东西:

foreach($items as $item)
{
   echo $item;
}

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:

foreach($items as $item)
{
   echo $item;
}
鱼窥荷 2024-12-18 21:53:13

你的 $items 是一个数组,我假设你试图

echo $items;

相反,你需要循环它:

foreach ($items as $item) {

  // View the structure of `$item`
  print_r($item);
}

如果你只期望 $items 保存一件事,那么就做:

print_r($items[0]);

Your $items is an array, and I assumed you attempted to

echo $items;

Instead you will need to loop over it:

foreach ($items as $item) {

  // View the structure of `$item`
  print_r($item);
}

If you only expect $items to hold one thing, then just do:

print_r($items[0]);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文