PHP:以五个为一组显示数据库中的条目?

PHP: display entries from Database in groups of five?(PHP:以五个为一组显示数据库中的条目?)
本文介绍了PHP:以五个为一组显示数据库中的条目?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

是否有可能,如果有,我该怎么做,选择我数据库中一个表中的所有条目,然后在一组中同时显示五个结果.

含义:例如,我的数据库中总共有 15 条记录,然后我想像这样显示我的数据:

Record[1], Record[2], Record[3], Record[4], Record[5]

<div class="6-10">Record[6], Record[7], Record[8], Record[9], Record[10]

<div class="11-15">Record[11], Record[12], Record[13], Record[14], Record[15]

我不确定是否可以使用 SQL 语句来完成,或者我必须编写某种do...while"或循环来检索每组数据.我也想过一些关于数组的事情,但没有得到结果.

谢谢

  • 梅斯蒂卡

解决方案

我发现 array_chunk() 对这种事情非常有用.

//将所有记录拉入一个数组$query = mysql_query('SELECT * FROM mytable');$rows = array();而 ($row = mysql_fetch_array($query)) {$rows[] = $row;}//这将一个数组变成一个数组数组,其中每个子数组是//5 个原始条目$groups = array_chunk($rows, 5);//一个接一个地处理每一组$开始= 1;foreach ($groups as $group) {$end = $start + 4;//$group 是一组 5 行.按要求处理$content = implode(', ', $group);回声<<<END<div class="$start-$end">$content</div>结尾;$开始 += 5;}

您当然可以不先阅读所有内容而执行此操作,但是如果您无论如何都要阅读所有内容,则没有太大区别,并且上述版本可能比实现适当的中断条件更具可读性(s) 当您从数据库中读取行时.

Is it possible and if so, how can I do it, to select all entries in a table in my database and then display five results at the time in one group.

Meaning: A example is that I've 15 records total in my database, then I want to present my data like this:

<div class="1-5">Record[1], Record[2], Record[3], Record[4], Record[5]</div>

<div class="6-10">Record[6], Record[7], Record[8], Record[9], Record[10]</div>

<div class="11-15">Record[11], Record[12], Record[13], Record[14], Record[15]</div>

I'm not completely sure if I can do it with an SQL statement or I've to write some sort of "do...while" or loop to retrieve each set of data. I've also thought about something with arrays but haven't got up with a result.

Thanks

  • Mestika

解决方案

I find array_chunk() to be pretty useful for this kind of thing.

// pull all the records into an array
$query = mysql_query('SELECT * FROM mytable');
$rows = array();
while ($row = mysql_fetch_array($query)) {
  $rows[] = $row;
}

// this turns an array into an array of arrays where each sub-array is
// 5 entries from the original
$groups = array_chunk($rows, 5);

// process each group one after the other
$start = 1;
foreach ($groups as $group) {
  $end = $start + 4;

  // $group is a group of 5 rows. process as required
  $content = implode(', ', $group);

  echo <<<END
<div class="$start-$end">$content</div>

END;
  $start += 5;
}

You can of course do this without reading them all in first but if you're going to read them all anyway, it doesn't make much difference and the above version will probably be far more readable than implementing the appropriate break condition(s) as you read the rows from the DB.

这篇关于PHP:以五个为一组显示数据库中的条目?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

相关文档推荐

DeepL的翻译效果还是很强大的,如果我们要用php实现DeepL翻译调用,该怎么办呢?以下是代码示例,希望能够帮到需要的朋友。 在这里需要注意,这个DeepL的账户和api申请比较难,不支持中国大陆申请,需要拥有香港或者海外信用卡才行,没账号的话,目前某宝可以
PHP通过phpspreadsheet导入Excel日期,导入系统后,全部变为了4开头的几位数字,这是为什么呢?原因很简单,将Excel的时间设置问文本,我们就能看到该日期本来的数值,上图对应的数值为: 要怎么解决呢?进行数据转换就行,这里可以封装方法,或者用第三方的
mediatemple - can#39;t send email using codeigniter(mediatemple - 无法使用 codeigniter 发送电子邮件)
Laravel Gmail Configuration Error(Laravel Gmail 配置错误)
Problem with using PHPMailer for SMTP(将 PHPMailer 用于 SMTP 的问题)
Issue on how to setup SMTP using PHPMailer in GoDaddy server(关于如何在 GoDaddy 服务器中使用 PHPMailer 设置 SMTP 的问题)