timestamp型のカラムがあるのですが下記のソースコードでは登録を行うことができないのですが、なぜだかわかりませんか?
public function insert(Admin $admin): int { $created = time(); $sqlInsert = "INSERT INTO data (created) VALUES (:created)"; $stmt = $this->db->prepare($sqlInsert); $stmt->bindValue(":created", $created, PDO::PARAM_STR); $result = $stmt->execute(); }
回答1件
あなたの回答
tips
プレビュー