用utc转换日期格式

时间:2016-01-28 10:30:36

标签: php date

我想将日期格式从'Wed,27 01 2016 00:00:00 EST'转换为'2016-01-27'。我的错误值'1970-01-01'

$config['uri_protocol'] = 'REQUEST_URI';

1 个答案:

答案 0 :(得分:4)

这意味着无法自动识别日期时间字符串。您需要指定输入格式:

echo date_create_from_format(
    'D, d m Y H:i:s e',  // <== input format  
    'Wed, 27 01 2016 00:00:00 EST'  // <== your string
)->format("Y-m-d")  // <== output format

此处有更多格式:http://php.net/manual/en/datetime.createfromformat.php