edo1z blog

プログラミングなどに関するブログです

cakePHP モデルからランダムに取得する

orderに、'rand()'とやる

public function get_banners($num = 3){
    $options = array(
        'limit' => $num,
        'order' => 'rand()'
    );
    return $this->find('all', $options);
}