我已经从XML获取了数百条记录到数组变量。当数组被回显时,其输出为:
array(1) {
[“photo”]=>
array(2) {
[”@attributes”]=>
array(3) {
[“baseURL”]=>
string(36) “http://www.myurl.com/photos/event_name11”
[“thumbDir”]=>
string(5) “thumb”
[“largeDir”]=>
string(6) “images”
}
[“pr”]=>
array(228) {
[0]=>
array(1) {
[”@attributes”]=>
array(5) {
[“w”]=>
string(3) “650”
[“h”]=>
string(3) “433”
[“p”]=>
string(10) “194393.JPG”
[“n”]=>
string(6) “194393”
[“d”]=>
string(0) “”
}
}
[1]=>
array(1) {
[”@attributes”]=>
array(5) {
[“w”]=>
string(3) “650”
[“h”]=>
string(3) “433”
[“p”]=>
string(10) “194394.JPG”
[“n”]=>
string(6) “194394”
[“d”]=>
string(0) “”
}
}
我想在一个页面中共显示15条记录,每行5条记录。图片的名称和尺寸位于:
[“pr”]=>
array(228) {
我尝试过使用其他PHP硬编码,但无法获得理想的结果。它在一个页面中显示所有记录。
如何在CI中使用分页?
答案 0 :(得分:0)
怎么样:
$array = ...
$page = 0; // the page number you want to display
$entriesPerPage = 5;
for($i = 0; $i < $entriesPerPage; $i++)
{
$entry = $array['pr'][$page * $entriesPerPage + $i];
// output your $entry somehow
}
或者如果你想得到3行â5infos:
$array = ...
$page = 0; // the page number you want to display
$entriesPerRow = 5;
$rowsPerPage = 3;
for($i = 0; $i < $rowsPerPage; $i++)
{
for($j = 0; $j < $entriesPerRow; $j++)
{
$entry = $array['pr'][($page * $rowsPerPage + $i) * $entriesPerRow + $j];
// output your $entry somehow
}
// make a new line
}