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.
我正在使用 Beanstream 支付 API,响应以以下日期格式返回:
5/21/2013 3:51:28 PM
使用 PHP 将其转换为 MySQL 中的 TIMESTAMP 或 DATETIME 的最佳方法是什么?
查看this、this和this以了解如何在 PHP 中解析、创建和格式化日期/时间。
如果您赶时间,这将起作用:
strftime('%Y-%m-%d %H:%M:%S', strtotime('5/21/2013 3:51:28 PM'))