Сообщество IT-специалистов
Ответы на любые вопросы об IT
Профессиональное развитие в IT
Удаленная работа для IT-специалистов
$query = \Yii::$app->db->queryBuilder; $query->insert('poll_vote', [ 'choice_id' => $choiceID, 'poll_id' => $pollID, 'user_id' => empty($userID) ? NULL : $userID, 'ip' => $ip, 'timestamp' => time() ], $params);
$query = new Query(); $query->createCommand()->insert(self::tableName(),[ 'choice_id' => ':choiceID' ...], [ ':choiceID' => $choiceID ])->execute();
$query = new Query(); $query->createCommand()->insert(self::tableName(),[ 'choice_id' => $choiceID, 'poll_id' => $pollID, 'user_id' => empty($userID) ? NULL : $userID, 'ip_address' => $ip, 'timestamp' => time()])->execute();