dongzongpeng6474 2011-09-09 06:10
浏览 79
已采纳

插入mysql日期的格式化日期

I am using jQueryUI datepicker and making sure that the date, mm/dd/yyyy is shown to the user so they understand what they entered is correct. My only problem is I don't understand how to then take that date and format it to go into mysql date field correctly?

  • 写回答

4条回答 默认 最新

  • drvc63490 2011-09-09 06:49
    关注

    That's pretty easy if you know a little PHP.
    Because PHP being a string manipulation language, it is a must to know some string manipulation basics.

    You can use strpos() function to locate position of / symbol and then use substr() to get numbers and then use . concatenation operator to get date parts in order

    You can use very handy explode() function, to get date parts into array and then combine them using some variable interpolation, like this:

    $d          = explode("/",$date);
    $date_mysql = "$d[2]-$d[0]-$d[1]";
    

    When mastered your string manipulation skills, you can start with real powerful voodoo of regular expressions.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(3条)

报告相同问题?

悬赏问题

  • ¥15 组策略中的计算机配置策略无法下发
  • ¥15 机器学习简单问题解决
  • ¥15 如何绘制动力学系统的相图
  • ¥15 对接wps接口实现获取元数据
  • ¥20 给自己本科IT专业毕业的妹m找个实习工作
  • ¥15 用友U8:向一个无法连接的网络尝试了一个套接字操作,如何解决?
  • ¥30 我的代码按理说完成了模型的搭建、训练、验证测试等工作(标签-网络|关键词-变化检测)
  • ¥50 mac mini外接显示器 画质字体模糊
  • ¥15 TLS1.2协议通信解密
  • ¥40 图书信息管理系统程序编写