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 前端echarts坐标轴问题
  • ¥15 CMFCPropertyPage
  • ¥15 ad5933的I2C
  • ¥15 请问RTX4060的笔记本电脑可以训练yolov5模型吗?
  • ¥15 数学建模求思路及代码
  • ¥50 silvaco GaN HEMT有栅极场板的击穿电压仿真问题
  • ¥15 谁会P4语言啊,我想请教一下
  • ¥15 这个怎么改成直流激励源给加热电阻提供5a电流呀
  • ¥50 求解vmware的网络模式问题 别拿AI回答
  • ¥24 EFS加密后,在同一台电脑解密出错,证书界面找不到对应指纹的证书,未备份证书,求在原电脑解密的方法,可行即采纳