Simple Question: How to split date (08-17-2011) into month, day, year? PHP

前端 未结 5 727
别那么骄傲
别那么骄傲 2020-12-17 19:06

I have a variable called $orderdate and it is set to a date format like this mm-dd-yyyy.

In PHP how would I split this variable into $month, $day, $year?

Tha

5条回答
  •  南笙
    南笙 (楼主)
    2020-12-17 19:14

    A good approach is to use date_parse_from_format().

    For your example:

    $dateStr = '03-27-2015';
    $dateArray = date_parse_from_format('m-d-Y', $dateStr);
    

    This gives $dateArray as:

    Array
    (
        [year] => 2015
        [month] => 3
        [day] => 27
        [hour] => 
        [minute] => 
        [second] => 
    ...
    )
    

提交回复
热议问题