コード例 #1
0
ファイル: RadioButton.php プロジェクト: pyw5pkU9PcdW/COMP3421
 public function increaseOptionById($id)
 {
     $model = Radiobutton::findOne($id);
     $model->count = $model->count + 1;
     if ($model->update()) {
         return true;
     }
     return false;
 }