gpt4 book ai didi

php - 我收到此错误错误 : Incorrect time value: '16:44:09 PM' for column 'time' at row 1 and I'm not sure why

转载 作者:行者123 更新时间:2023-11-29 16:33:28 27 4
gpt4 key购买 nike

这是我正在运行的 php 代码。在我的服务器中,我设置了一个时间变量来记录时间。

$time = date('H:i:s A', time());
$query = "INSERT INTO shouts (user, message, time)
VALUES('$user', '$message', '$time')";

if(!mysqli_query($con, $query)){
die('Error: ' .mysqli_error($con));
}else{
header("Location: index.php");
exit();
}

最佳答案

去掉时间格式中的“A”:

$time = date('H:i:s');

如果您使用的是当前时间,则实际上也不需要第二个参数。

关于php - 我收到此错误错误 : Incorrect time value: '16:44:09 PM' for column 'time' at row 1 and I'm not sure why,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53751924/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com