Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个 varchar 数据类型的表,它存储:
stored in a varchar field ---> date = 05/29/2013 varchar field ---> time = 7:00 PM
我如何将这两者合二为一并使用军事时间格式,就像:
will be stored in a datetime field --> 05/29/2013 19:00
它会是计算 PHP 和 MySQL 中时差的最简单方法吗?任何建议都非常感谢。非常感谢。
您可以使用该strtotime方法将日期/时间的字符串表示形式转换为时间戳,然后可以使用该date函数以您喜欢的任何方式对其进行格式化
strtotime
date
$dateString = '05/29/2013 7:00 PM'; echo date('m/d/Y H:i', strtotime($dateString));