本文介绍了将日期转换为Mysql日期格式php的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我的数据库中有此日期格式
I have this date format in my db
19th April 2013
我想将其转换为
2013-04-19
如果没有其他条件,我已经使用过,但是它变得太长和复杂.是否有任何内置函数?
I have used if,else conditions , BUt it becomes too long and complicated .Are there any built in functions ??
推荐答案
使用PHP's
date
函数
date("Y-m-d",strtotime("19th April 2013"));
这篇关于将日期转换为Mysql日期格式php的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!