在PHP中是否有一种简单的方法将一种日期格式转换为另一种日期格式?

我有这个:

$old_date = date('y-m-d-h-i-s');            // works

$middle = strtotime($old_date);             // returns bool(false)

$new_date = date('Y-m-d H:i:s', $middle);   // returns 1970-01-01 00:00:00

但我当然希望它返回当前日期,而不是黎明时分。我做错了什么?


当前回答

date()的第二个参数需要是一个合适的时间戳(从1970年1月1日开始的秒数)。您正在传递一个date()无法识别的字符串。

可以使用strtotime()将日期字符串转换为时间戳。但是,即使strtotime()也不识别y-m-d-h-i-s格式。

PHP 5.3及以上版本

使用DateTime:: createFromFormat。它允许您指定一个精确的掩码(使用date()语法)来解析传入的字符串日期。

PHP 5.2及以下版本

您必须使用substr()手动解析元素(年、月、日、小时、分钟、秒),并将结果交给mktime(), mktime()将为您构建一个时间戳。

但那需要做很多工作!我建议使用strftime()能够理解的不同格式。Strftime()能够理解Joe下次在冰上滑倒之前的任何日期输入。例如,这是可行的:

$old_date = date('l, F d y h:i:s');              // returns Saturday, January 30 10 02:06:34
$old_date_timestamp = strtotime($old_date);
$new_date = date('Y-m-d H:i:s', $old_date_timestamp);   

其他回答

date()的第二个参数需要是一个合适的时间戳(从1970年1月1日开始的秒数)。您正在传递一个date()无法识别的字符串。

可以使用strtotime()将日期字符串转换为时间戳。但是,即使strtotime()也不识别y-m-d-h-i-s格式。

PHP 5.3及以上版本

使用DateTime:: createFromFormat。它允许您指定一个精确的掩码(使用date()语法)来解析传入的字符串日期。

PHP 5.2及以下版本

您必须使用substr()手动解析元素(年、月、日、小时、分钟、秒),并将结果交给mktime(), mktime()将为您构建一个时间戳。

但那需要做很多工作!我建议使用strftime()能够理解的不同格式。Strftime()能够理解Joe下次在冰上滑倒之前的任何日期输入。例如,这是可行的:

$old_date = date('l, F d y h:i:s');              // returns Saturday, January 30 10 02:06:34
$old_date_timestamp = strtotime($old_date);
$new_date = date('Y-m-d H:i:s', $old_date_timestamp);   

最基本的

将一种日期格式转换为另一种日期格式的最简单方法是使用strtotime()和date()。strtotime()将日期转换为Unix时间戳。然后可以将Unix时间戳传递给date()以将其转换为新格式。

$timestamp = strtotime('2008-07-01T22:35:17.02');
$new_date_format = date('Y-m-d H:i:s', $timestamp);

或者作为一行语句:

$new_date_format = date('Y-m-d H:i:s', strtotime('2008-07-01T22:35:17.02'));

请记住,strtotime()要求日期为有效格式。未能提供有效格式将导致strtotime()返回false,这将导致您的日期为1969-12-31。

使用DateTime ()

从PHP 5.2开始,PHP提供了DateTime()类,它为我们提供了更强大的日期(和时间)处理工具。我们可以使用DateTime()重写上述代码,如下所示:

$date = new DateTime('2008-07-01T22:35:17.02');
$new_date_format = $date->format('Y-m-d H:i:s');

使用Unix时间戳

date()接受Unix时间戳作为第二个参数,并为您返回一个格式化的日期:

$new_date_format = date('Y-m-d H:i:s', '1234567890');

DateTime()通过在时间戳之前添加@来处理Unix时间戳:

$date = new DateTime('@1234567890');
$new_date_format = $date->format('Y-m-d H:i:s');

如果您拥有的时间戳是以毫秒为单位的(它可能以000结尾并且/或者时间戳有13个字符长),那么您需要将其转换为秒,然后才能将其转换为另一种格式。有两种方法:

使用substr()删除最后三位数字

可以用几种方法来修剪最后三位数字,但使用substr()是最简单的:

$timestamp = substr('1234567899000', -3);

substr除以1000

还可以通过除以1000将时间戳转换为秒。因为时间戳对于32位系统来说太大了,你需要使用BCMath库来作为字符串进行计算:

$timestamp = bcdiv('1234567899000', '1000');

要获得Unix时间戳,可以使用strtotime(),它返回Unix时间戳:

$timestamp = strtotime('1973-04-18');

对于DateTime(),您可以使用DateTime::getTimestamp()

$date = new DateTime('2008-07-01T22:35:17.02');
$timestamp = $date->getTimestamp();

如果你运行的是PHP 5.2,你可以使用U格式化选项:

$date = new DateTime('2008-07-01T22:35:17.02');
$timestamp = $date->format('U');

使用非标准和不明确的日期格式

不幸的是,并非所有开发人员必须处理的日期都采用标准格式。幸运的是,PHP 5.3为我们提供了一个解决方案。DateTime::createFromFormat()允许我们告诉PHP日期字符串的格式,这样它就可以成功地解析为DateTime对象以进行进一步操作。

$date = DateTime::createFromFormat('F-d-Y h:i A', 'April-18-1973 9:48 AM');
$new_date_format = $date->format('Y-m-d H:i:s');

在PHP 5.4中,我们获得了在实例化时进行类成员访问的能力,这允许我们将DateTime()代码转换为一行代码:

$new_date_format = (new DateTime('2008-07-01T22:35:17.02'))->format('Y-m-d H:i:s');

$new_date_format = DateTime::createFromFormat('F-d-Y h:i A', 'April-18-1973 9:48 AM')->format('Y-m-d H:i:s');

我知道这很老了,但是,在遇到一个供应商在他们的api中不一致地使用5种不同的日期格式(并且测试了从5到最新7的各种PHP版本的服务器)时,我决定编写一个适用于无数PHP版本的通用转换器。

这个转换器几乎可以接受任何输入,包括任何标准datetime格式(包括有或没有毫秒)和任何Epoch Time表示(包括有或没有毫秒),并将其转换为几乎任何其他格式。

称之为:

$TheDateTimeIWant=convertAnyDateTome_toMyDateTime([thedateIhave],[theformatIwant]);

为该格式发送空值将使函数返回Epoch/Unix Time格式的datetime。否则,发送date()支持的任何格式字符串,以及"。u”表示毫秒(我也处理毫秒,即使date()返回0)。

代码如下:

        <?php   
        function convertAnyDateTime_toMyDateTime($dttm,$dtFormat)
        {
            if (!isset($dttm))
            {
                return "";
            }
            $timepieces = array();
            if (is_numeric($dttm))
            {
                $rettime=$dttm;
            }
            else
            {
                $rettime=strtotime($dttm);
                if (strpos($dttm,".")>0 and strpos($dttm,"-",strpos($dttm,"."))>0)
                {
                    $rettime=$rettime.substr($dttm,strpos($dttm,"."),strpos($dttm,"-",strpos($dttm,"."))-strpos($dttm,"."));
                    $timepieces[1]="";
                }
                else if (strpos($dttm,".")>0 and strpos($dttm,"-",strpos($dttm,"."))==0)
                {               
                    preg_match('/([0-9]+)([^0-9]+)/',substr($dttm,strpos($dttm,"."))." ",$timepieces);
                    $rettime=$rettime.".".$timepieces[1];
                }
            }

            if (isset($dtFormat))
            {
                // RETURN as ANY date format sent
                if (strpos($dtFormat,".u")>0)       // Deal with milliseconds
                {
                    $rettime=date($dtFormat,$rettime);              
                    $rettime=substr($rettime,0,strripos($rettime,".")+1).$timepieces[1];                
                }
                else                                // NO milliseconds wanted
                {
                    $rettime=date($dtFormat,$rettime);
                }
            }
            else
            {
                // RETURN Epoch Time (do nothing, we already built Epoch Time)          
            }
            return $rettime;    
        }
    ?>

下面是一些示例调用-您将注意到它还处理任何时区数据(尽管如上所述,在您的时区中返回任何非GMT时间)。

        $utctime1="2018-10-30T06:10:11.2185007-07:00";
        $utctime2="2018-10-30T06:10:11.2185007";
        $utctime3="2018-10-30T06:10:11.2185007 PDT";
        $utctime4="2018-10-30T13:10:11.2185007Z";
        $utctime5="2018-10-30T13:10:11Z";
        $dttm="10/30/2018 09:10:11 AM EST";

        echo "<pre>";
        echo "<b>Epoch Time to a standard format</b><br>";
        echo "<br>Epoch Tm: 1540905011    to STD DateTime     ----RESULT: ".convertAnyDateTime_toMyDateTime("1540905011","Y-m-d H:i:s")."<hr>";
        echo "<br>Epoch Tm: 1540905011          to UTC        ----RESULT: ".convertAnyDateTime_toMyDateTime("1540905011","c");
        echo "<br>Epoch Tm: 1540905011.2185007  to UTC        ----RESULT: ".convertAnyDateTime_toMyDateTime("1540905011.2185007","c")."<hr>";
        echo "<b>Returned as Epoch Time (the number of seconds that have elapsed since 00:00:00 Thursday, 1 January 1970, Coordinated Universal Time (UTC), minus leap seconds.)";
        echo "</b><br>";
        echo "<br>UTCTime1: ".$utctime1." ----RESULT: ".convertAnyDateTime_toMyDateTime($utctime1,null);
        echo "<br>UTCTime2: ".$utctime2."       ----RESULT: ".convertAnyDateTime_toMyDateTime($utctime2,null);
        echo "<br>UTCTime3: ".$utctime3."   ----RESULT: ".convertAnyDateTime_toMyDateTime($utctime3,null);
        echo "<br>UTCTime4: ".$utctime4."      ----RESULT: ".convertAnyDateTime_toMyDateTime($utctime4,null);
        echo "<br>UTCTime5: ".$utctime5."              ----RESULT: ".convertAnyDateTime_toMyDateTime($utctime5,null);
        echo "<br>NO MILIS: ".$dttm."        ----RESULT: ".convertAnyDateTime_toMyDateTime($dttm,null);
        echo "<hr>";
        echo "<hr>";
        echo "<b>Returned as whatever datetime format one desires</b>";
        echo "<br>UTCTime1: ".$utctime1." ----RESULT: ".convertAnyDateTime_toMyDateTime($utctime1,"Y-m-d H:i:s")."              Y-m-d H:i:s";
        echo "<br>UTCTime2: ".$utctime2."       ----RESULT: ".convertAnyDateTime_toMyDateTime($utctime2,"Y-m-d H:i:s.u")."      Y-m-d H:i:s.u";
        echo "<br>UTCTime3: ".$utctime3."   ----RESULT: ".convertAnyDateTime_toMyDateTime($utctime3,"Y-m-d H:i:s.u")."      Y-m-d H:i:s.u";
        echo "<p><b>Returned as ISO8601</b>";
        echo "<br>UTCTime3: ".$utctime3."   ----RESULT: ".convertAnyDateTime_toMyDateTime($utctime3,"c")."        ISO8601";
        echo "</pre>";

输出如下:

Epoch Tm: 1540905011                        ----RESULT: 2018-10-30 09:10:11

Epoch Tm: 1540905011          to UTC        ----RESULT: 2018-10-30T09:10:11-04:00
Epoch Tm: 1540905011.2185007  to UTC        ----RESULT: 2018-10-30T09:10:11-04:00
Returned as Epoch Time (the number of seconds that have elapsed since 00:00:00 Thursday, 1 January 1970, Coordinated Universal Time (UTC), minus leap seconds.)

UTCTime1: 2018-10-30T06:10:11.2185007-07:00 ----RESULT: 1540905011.2185007
UTCTime2: 2018-10-30T06:10:11.2185007       ----RESULT: 1540894211.2185007
UTCTime3: 2018-10-30T06:10:11.2185007 PDT   ----RESULT: 1540905011.2185007
UTCTime4: 2018-10-30T13:10:11.2185007Z      ----RESULT: 1540905011.2185007
UTCTime5: 2018-10-30T13:10:11Z              ----RESULT: 1540905011
NO MILIS: 10/30/2018 09:10:11 AM EST        ----RESULT: 1540908611
Returned as whatever datetime format one desires
UTCTime1: 2018-10-30T06:10:11.2185007-07:00 ----RESULT: 2018-10-30 09:10:11              Y-m-d H:i:s
UTCTime2: 2018-10-30T06:10:11.2185007       ----RESULT: 2018-10-30 06:10:11.2185007      Y-m-d H:i:s.u
UTCTime3: 2018-10-30T06:10:11.2185007 PDT   ----RESULT: 2018-10-30 09:10:11.2185007      Y-m-d H:i:s.u
Returned as ISO8601
UTCTime3: 2018-10-30T06:10:11.2185007 PDT   ----RESULT: 2018-10-30T09:10:11-04:00        ISO8601

这个版本中唯一没有的功能是选择希望返回的datetime所在的时区。最初,我写这个代码是为了将任何日期时间更改为Epoch Time,因此,我不需要时区支持。不过,添加起来很简单。

试试这个:

$old_date = date('y-m-d-h-i-s');
$new_date = date('Y-m-d H:i:s', strtotime($old_date));

这种原生方式将有助于将任何输入格式转换为所需的格式。

$formatInput = 'd-m-Y'; //Give any format here, this would be converted into your format
$dateInput = '01-02-2018'; //date in above format

$formatOut = 'Y-m-d'; // Your format
$dateOut = DateTime::createFromFormat($formatInput, $dateInput)->format($formatOut);