在 Mysqli 中使用 bind_param 绑定日期和时间列
在使用 MySQL 日期和时间列时,您可能会遇到需要以下情况:使用 PHP 的 mysqli 扩展和 bind_param 方法将数据插入到这些字段中。
要将日期或时间值绑定到准备好的语句,请将其视为常规字符串。以下示例演示如何将日期和时间值插入 SQL 数据库:
// Prepare a statement for inserting a date and time $stmt = $mysqli->prepare('INSERT INTO foo (dt) VALUES (?)'); // Specify a date and time string in the 'Y-m-d H:i:s' format $dt = '2009-04-30 10:09:00'; // Bind the date and time string as a string $stmt->bind_param('s', $dt); // Execute the statement $stmt->execute();
在此示例中,bind_param 方法期望第一个参数是类型说明符,在本例中为 's'对于字符串。第二个参数是包含日期和时间值的变量。
通过将日期和时间值视为字符串并使用bind_param绑定它们,您可以使用PHP mysqli轻松地将数据插入MySQL的日期和时间列。
以上是如何在 PHP mysqli 中使用 bind_param 绑定日期和时间值?的详细内容。更多信息请关注PHP中文网其他相关文章!