$command = \Yii::$app->db->createCommand(
"INSERT DELAYED INTO table_name
(id, phone, title, name, price)
VALUES
(:id, :phone, :title, :name, :price);");
$command->bindValues([":id" => $id,
":phone" => $phone,
":title" => $title,
":name" => $name,
":price" => $price]);
$command->query();