PayPal IPN 返回日期时间格式


Paypal IPN return datetime formatting

palpal sandbox IPN 返回日期时间作为Mon Jun 15 2015 12:04:00 GMT+0600 (Azores Standard Time) .如何在PHP中格式化它?请查看我的日期格式。这不是重复的。

如果您删除(Azores Standard Time)您的日期将变为有效,然后您可以使用strtotime()DateTime

$string = 'Mon Jun 15 2015 12:04:00 GMT+0600 (Azores Standard Time)';
$string = substr($string, 0, strrpos($string, '(') - 1);
$dt = new DateTime($string);
echo $dt->format('c 'o'r U');

演示