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'); } }
/** * @return \yii\db\ActiveQuery */ public function getIdTime() { return $this->hasOne(Time::className(), ['id' => 'id_time']); }
/** * @return \yii\db\ActiveQuery */ public function getVencedor0() { return $this->hasOne(Time::className(), ['id' => 'vencedor']); }
/** * 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.'); } }
/** * */ 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'); }