使用mysqli bind_param在MySQL中插入日期时间
MySQL的日期和时间列可以通过PHP mysqli的bind_param填充。在插入过程中只需将它们视为字符串即可。
示例:
<code class="php">$stmt = $mysqli->prepare('insert into foo (dt) values (?)'); $dt = '2009-04-30 10:09:00'; $stmt->bind_param('s', $dt); $stmt->execute();</code>
以上是如何使用 mysqli bind_param 将日期时间值插入 MySQL?的详细内容。更多信息请关注PHP中文网其他相关文章!