2

我有这个数组构建

 <?php
    $bidding_history = $current_bidding_data;
    if(is_array($bidding_history) && !empty($bidding_history) ){ 
    ?>

        <ul class="list-group">
        <?php
        foreach($bidding_history as $kk => $bhistory){
        ?>

$bhistory 回显如下,

<li class="list-group-item"><span class="badge pull-right"><small><?php echo $bhistory['username'] ?></small></span>

我只想回显 $bhistory 的最后 10 行。

我试过 array_splice

<li class="list-group-item"><span class="badge pull-right"><small><?php echo array_splice ($bidding_history['username'], -1, 10, true) ?></small></span>

但在前端我收到一个错误代码:警告:array_slice() 期望参数 1 是数组,给定 null

我不知道做错了什么,需要帮助

提前致谢。

4

2 回答 2

2

你可以用array_slice();这个。

这里有一个例子:

<?php
$bidding_history_new = array_slice($bidding_history, -10);
foreach($bidding_history_new as $kk => $bhistory){
    //whatever you do here

}
?>

array_slice();有关 PHP函数的更多信息:http: //php.net/manual/en/function.array-slice.php

于 2015-03-29T14:22:05.330 回答
0

我认为答案可能并不在于array_slice.

您可以使用 for 循环轻松查看数组的最后 10 个元素:

for($i = count($bidding_history) - 10; $i < count($bidding_history); $i++) {
?>
    <li class="list-group-item"><span class="badge pull-right"><small>
<?php 
    echo $bidding_history[$i]['username'] 
?>
    </small></span>
<?php
}

或者

for($i = count($bidding_history) - 10; $i < count($bidding_history); $i++) {
    //...whatever you want to do...
    $username = $bidding_history[$i]['username'];
}
于 2015-03-29T15:01:19.260 回答