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 or U');
演示