0

我需要做这个棘手的事情:以随机方式选择 10 个项目,一个项目用于真/假标准,其余 9 个项目回显:

$unique_items=array('bike', 'doll', 'carpet', 'postcard');

do {
   $items=ORM::factory('Shop')
     ->order_by(DB::expr('Rand()'))//this way I take 10 random rows from the table
     ->limit(10)
     ->find_all();
}while (in_array(first_item_from_ten_rows->name, $unique_items));

foreach ($items as $item){
   echo $item->name;//display 2nd, 3rd, ..., 10th items, without the first one
}

我这里使用的php框架是Kohana3.3

4

1 回答 1

0

我不确定这是否是您需要做的:

$first = TRUE
foreach ($items as $item) 
{
   if ($first)
   {
      $first = FALSE;
   }
   else
   {
      echo $item->name;
   }
}
于 2012-12-11T09:07:35.450 回答