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.
我有来自 paypal 的日期,即 payment_date,这个日期的格式是 2013 年 7 月 5 日 07:39:49 PDT,如何将它插入我的表中。或如何仅插入此 2013 年 7 月 5 日 .. 我正在使用 PHP
先感谢您。
<?php $date="01:07:13 May 07, 2011 PDT"; echo date('Y-m-d h:i:s',strtotime($date)); ?>
试试上面的代码