本文介绍了如何将日期从一种格式转换为另一种格式?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我在Excel工作表10年12月3日中使用这种格式的日期.因此,将其插入数据库时不兼容.如何将日期转换为可接受的格式?
I'm having the date in this format in a Excel worksheet 03-Dec-10. So its not compatible while inserting it into the database. How to convert the date to the acceptable format?
推荐答案
虽然乔恩的答案是正确的,但这是另一个选择:
While Jon's answer is correct, here is another option:
$input = '03-Dec-10';
$date = date('Ymd', strtotime($input));
这篇关于如何将日期从一种格式转换为另一种格式?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!