コード例 #1
0
ファイル: TimeController.php プロジェクト: Greasi/yizu
 public function actionDelete()
 {
     $id = $_GET['id'];
     //$arr=Company::findOne($id);
     //echo $arr['_id'];die;
     if (Time::findOne($id)->delete()) {
         echo $this->success("删除成功", "index.php?r=time", '1');
     } else {
         echo $this->error("删除失败", "index.php?r=time", '1');
     }
 }
コード例 #2
0
ファイル: GrupoTime.php プロジェクト: dieos2/bolaoyyi2
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getIdTime()
 {
     return $this->hasOne(Time::className(), ['id' => 'id_time']);
 }
コード例 #3
0
ファイル: Confronto.php プロジェクト: dieos2/bolaoyyi2
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getVencedor0()
 {
     return $this->hasOne(Time::className(), ['id' => 'vencedor']);
 }
コード例 #4
0
ファイル: TimeController.php プロジェクト: dieos2/bolaoyyi2
 /**
  * Finds the Time model based on its primary key value.
  * If the model is not found, a 404 HTTP exception will be thrown.
  * @param integer $id
  * @return Time the loaded model
  * @throws NotFoundHttpException if the model cannot be found
  */
 protected function findModel($id)
 {
     if (($model = Time::findOne($id)) !== null) {
         return $model;
     } else {
         throw new NotFoundHttpException('The requested page does not exist.');
     }
 }
コード例 #5
0
 /**
  *
  */
 public function sqltime()
 {
     debug(microtime());
     for ($i = 1; $i <= 1000; $i++) {
         $user_id = rand(1, 100000);
         $click = $i;
         //debug($i);
         $data = ['user_id' => $user_id, 'click' => $click];
         Time::create($data);
     }
     debug(microtime());
     return view('index');
 }