【发布时间】:2015-03-29 14:18:25
【问题描述】:
我已经构建了这个数组
<?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 行。
我试过数组拼接
<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 为数组,给定为空
我不知道做错了什么,需要帮助
提前致谢。
【问题讨论】:
标签: php arrays foreach array-splice