このトリッキーなことを行う必要があります: 10 項目をランダムに選択し、1 項目を true/false 基準に、残りの 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 です。