コード例 #1
0
ファイル: BaseAdmin.php プロジェクト: pablozabo/Diarco
 static function getTestimonioRandom()
 {
     $data = BaseDao::getAllTestimonios();
     $count = sizeof($data);
     $index = rand(0, $count - 1);
     return $data[$index];
 }