コード例 #1
0
ファイル: RadioButton.php プロジェクト: pyw5pkU9PcdW/COMP3421
 public function getOptionsStatisticsByQuestionId($id)
 {
     return Radiobutton::find()->where(['Question_id' => $id])->select(['content', 'count'])->orderBy(['count' => SORT_DESC])->asArray()->all();
 }