gpt4 book ai didi

php - mysql时间类型显示12 :00 AM as default value

转载 作者:行者123 更新时间:2023-11-29 15:05:39 25 4
gpt4 key购买 nike

$s=00:00:00(数据库中时间类型的默认值)

如果我这样做$sp=date('g:i A',strtotime($s));那么它返回12:00 AM

我希望如果数据库中有默认值,那么它不会在任何时候显示或将其留空以供进一步使用

最佳答案

$time = strtotime($s);
if($s == "00:00:00")
{
// default time
}
else
{
$sp = date("g:i A", strtotime($s));
}

只是为了确保您知道,00:00:00 是凌晨 12:00。更具体地说,是 1970 年 1 月 1 日凌晨 12:00。

关于php - mysql时间类型显示12 :00 AM as default value,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2168203/

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