gpt4 book ai didi

mysql - Codeigniter MySQL 不正确的日期时间插入

转载 作者:行者123 更新时间:2023-11-29 07:19:01 25 4
gpt4 key购买 nike

在插入数据库之前的 codeigniter 中,日期时间是正确的。

05-08-2019 17:30:00

但是在数据库中它是05-08-2019 5:30:00我试图在 config.php 中添加时间戳。

date_default_timezone_set('Asia/Kolkata');

但是这种行为没有改变。

最佳答案

试试这个,

$data['cur_time']=date('Y-m-d H:i:s');//changes `H` & `Y`
$this->db->insert('tb_user', $data);

H will give you Hour (00 to 23)
h will give you Hour (00 to 12)
Y Year as a numeric, 4-digit value
y Year as a numeric, 2-digit value

关于mysql - Codeigniter MySQL 不正确的日期时间插入,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57368094/

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