dpp34603 2013-12-24 17:37
浏览 72
已采纳

jquery datetimepicker addon am / pm - 所有pm字符串都在db中

I am using codeigniter and jquery datetimepicker addon. On my view page I have the datetimepicker format like

$(".traveler").datetimepicker({
        dateFormat: 'yy-mm-dd',
        timeFormat: 'hh:mm tt',
           //other stuff
});

In my codeigniter controller action method I have

 'arrivaldate' => date('Y-m-d h:i:s a', strtotime($this->input->post('arrivaldate'))), 
 'departuredate' => date('Y-m-d h:i:s a', strtotime($this->input->post('departuredate'))),

After saving in the database it looks like this 2013-12-04 08:00:00

When I read from the database to present, I do this in php

date("Y-m-d h:i a",strtotime($myrow['arrivaldate']))

When I show it up on my view page again it looks like 2013-12-04 08:00 am when it should say 2013-12-04 08:00 pm

For some reason I cannot figure out why ? It has to be something with my formats and I have been at it all day. Any ideas ?

  • 写回答

1条回答 默认 最新

  • douxia3505 2013-12-24 17:42
    关注

    Your issue is the hours. database hours DATETIME is stored in military time.

    Change it to

    date("Y-m-d H:i:s", strtotime($somevariablehere));
    

    Now when you stick that in the database it will be correct.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
编辑
预览

报告相同问题?

悬赏问题

  • ¥15 爱快路由器端口更改错误导致无法访问
  • ¥20 安装catkin时遇到了如下问题请问该如何解决呢
  • ¥15 VAE模型如何输出结果
  • ¥15 编译python程序为pyd文件报错:{"source code string cannot contain null bytes"
  • ¥20 关于#r语言#的问题:广义加行模型拟合曲线后如何求拐点
  • ¥15 fluent设置了自动保存后,会有几个时间点不保存
  • ¥20 激光照射到四象线探测器,通过液晶屏显示X、Y值
  • ¥50 数据库开发问题求解答
  • ¥15 安装anaconda时报错
  • ¥15 小程序有个导出到插件方式,我是在分包下引入的插件,这个export的路径对吗,我看官方文档上写的是相对路径
手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部