gpt4 book ai didi

mysql - 将 int date 插入到 codeigniter 中的数据库表中

转载 作者:行者123 更新时间:2023-11-29 15:37:46 26 4
gpt4 key购买 nike

我尝试将整数日期值插入数据库,但它只会发布日期,就像我的日期是(2019 年 9 月 23 日)一样,它会将 23 发布到数据库中,我想像整数日期值一样插入此日期。

这是我的 View 代码:

<input type="text" class="form-control datetimepicker7" name="entity_expired" value="" placeholder="Date" autocomplete="off">

这是我的模式代码:

$entity_expired = trim($_POST['entity_expired']);

$data = array('entity_expired' => $entity_expired);
$this->db->where('entity_id',$entity_id);
$this->db->update('tbl_entity',$data);

最佳答案

你可以这样尝试:

$entity_expired = strtotime(trim($_POST['entity_expired']));

$data = array('entity_expired' => $entity_expired);
$this->db->where('entity_id',$entity_id);
$this->db->update('tbl_entity',$data);

并稍后检索实体过期日期:

$entity_expired = date('Y-m-d', $data->entity_expired);

关于mysql - 将 int date 插入到 codeigniter 中的数据库表中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58055552/

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