使用Mysqli bind_param和日期和时间列?

如何使用PHP mysqli和bind_param将数据插入MySQL日期或时间列?

回答:

像其他字符串一样

$stmt = $mysqli->prepare('insert into foo (dt) values (?)');

$dt = '2009-04-30 10:09:00';

$stmt->bind_param('s', $dt);

$stmt->execute();

以上是 使用Mysqli bind_param和日期和时间列? 的全部内容, 来源链接: utcz.com/qa/398386.html

回到顶部