PHP - Using strtotime with a UK date format (dd-mm-yy)

后端 未结 3 1826
面向向阳花
面向向阳花 2021-01-04 10:38

Quite simply in PHP I have a date of 8th January 2011, in the format 08-01-11 - when I run this into strtotime and convert it back into a different date format, it reverts b

3条回答
  •  梦谈多话
    2021-01-04 10:56

    The perfect solution would be for the US to use the correct date format in the first place... ;0)

    I do this to get around it:

    $date = "31/12/2012";
    $bits = explode('/',$date);
    $date = $bits[1].'/'.$bits[0].'/'.$bits[2];
    

    $date is now strtotimeable

提交回复
热议问题