在PHP中将一种日期格式转换为另一种日期格式


336

有没有一种简单的方法可以将一种日期格式转换为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

但是我当然希望它返回一个当前日期,而不是返回“黎明”。我究竟做错了什么?



Answers:


293

第二个参数date()必须是正确的时间戳(自1970年1月1日以来的秒数)。您正在传递一个字符串,date()无法识别。

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

PHP 5.3以上

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

PHP 5.2及更低版本

您将必须使用手动解析元素(年,月,日,时,分,秒)substr(),并将结果传递给mktime(),这将为您建立一个时间戳。

但这是很多工作!我建议使用strftime()可以理解的其他格式。strftime()可理解除之外的任何 日期输入the next time joe will slip on the ice。例如,这有效:

$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);   

谢谢Pekka,只是编辑了我的问题,尝试了一下,但是似乎没有用。
汤姆(Tom)2010年

当您接受答案时,我编辑了答案:)我添加了更多示例和参考。
Pekka 2010年

知道,这确实是问题。这是一个固定的文件名,我需要将其转换回日期(必须采用这种格式),所以我将找出一种解决方法。
汤姆(Tom)2010年

注意:根据php.net的DateTime存在,因为PHP核心中的PHP 5.2 DateTime可以在编译时启用对PHP 5.1的实验性支持。secure.php.net/manual/en/datetime.installation.php
Charlotte Dunois

108

最简单的方法是

$myDateTime = DateTime::createFromFormat('Y-m-d', $dateString);
$newDateString = $myDateTime->format('m/d/Y');

首先给它指定$ dateString的格式。然后告诉它想要$ newDateString的格式。

这也避免了使用strtotime,因为strtotime有时很难使用。

如果您不是要从一种日期格式转换为另一种日期格式,而只是希望将当前日期(或日期时间)转换为特定格式,那么它会更加容易:

$now = new DateTime();
$timestring = $now->format('Y-m-d h:i:s');

这个其他问题也涉及相同的主题:转换日期格式yyyy-mm-dd => dd-mm-yyyy


如果我在您指的是一个问题之前问过这个问题,那该怎么做?
汤姆(Tom)

1
我已经编辑了回复。我只想指出,这两个问题应该以某种方式联系起来。
ceiroa

在5.3或更高版本中可用
Zorox

$timestring = $now->format('Y-m-d h:i:s');一定?m几个月,i几分钟
Mark Ba​​ker


53

基础

一个日期格式转换为另一种的simplist方法是使用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 timeatamp作为其第二个参数,并为您返回格式化日期:

$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);
  • 除以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,则可以改用Uformatting选项:

$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');

27

尝试这个:

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

无法使用,strtotime()无法识别格式。刚刚尝试过。
Pekka 2010年

同意,我只是输入了发问者的格式代码,应该指定正确的格式。
Sarfraz 2010年

它为我工作。我的$ old_date就像这样2012-05-22T19:16:37 + 01:00。顺便谢谢
VishwaKumar

15

要转换$datedd-mm-yyyy hh:mm:ss到一个适当的MySQL日期时间我是这样的:

$date = DateTime::createFromFormat('d-m-Y H:i:s',$date)->format('Y-m-d H:i:s');

4
除非您有110%的把握$ date是有效的日期并且适合格式,否则您不应该链接这些方法。话虽如此,与格式不完全匹配的无效日期将返回:Fatal error: Call to a member function format() on a non-object。只是一个提示!
半疯狂的2014年

没错,更好的解决方案是分三个步骤进行操作,其中将空检查作为中间步骤。
Jelle de Fries 2014年

11

以下是将日期转换为不同格式的简便方法。

// Create a new DateTime object
$date = DateTime::createFromFormat('Y-m-d', '2016-03-25');

// Output the date in different formats
echo $date->format('Y-m-d')."\n";
echo $date->format('d-m-Y')."\n";
echo $date->format('m-d-Y')."\n";

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

您在这里做错了,这应该是

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

时间的分隔符是“:”


我认为这会有所帮助...

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

preg_match_all('/(\d+)-(\d+)-(\d+)-(\d+)-(\d+)-(\d+)/', $old_date, $out, PREG_SET_ORDER);
$out = $out[0];
$time = mktime($out[4], $out[5], $out[6], $out[2], $out[3], $out[1]);

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

要么


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

$out = explode('-', $old_date);
$time = mktime($out[3], $out[4], $out[5], $out[1], $out[2], $out[0]);

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

是的,非常感谢,这是我要转换回正确日期格式的GUID文件名。
汤姆

8

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

$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);


7

strtotime将解决此问题。日期是不一样的,全都是我们格式的。

<?php
$e1 = strtotime("2013-07-22T12:00:03Z");
echo date('y.m.d H:i', $e1);
echo "2013-07-22T12:00:03Z";

$e2 = strtotime("2013-07-23T18:18:15Z");
echo date ('y.m.d H:i', $e2);
echo "2013-07-23T18:18:15Z";

$e1 = strtotime("2013-07-21T23:57:04Z");
echo date ('y.m.d H:i', $e2);
echo "2013-07-21T23:57:04Z";
?>

5

尝试这个:

$tempDate = explode('-','03-23-15');
$date = '20'.$tempDate[2].'-'.$tempDate[0].'-'.$tempDate[1];

5

这为我解决了

$old = '18-04-2018';
$new = date('Y-m-d', strtotime($old));
echo $new;

输出:2018-04-18


2

这是转换日期格式的另一种方法

 <?php
$pastDate = "Tuesday 11th October, 2016";
$pastDate = str_replace(",","",$pastDate);

$date = new DateTime($pastDate);
$new_date_format = $date->format('Y-m-d');

echo $new_date_format.' 23:59:59'; ?>

1

仅使用字符串,对我来说是一个很好的解决方案,mysql的问题更少。检测当前格式并在必要时进行更改,此解决方案仅适用于西班牙语/法语格式和英语格式,而不使用php datetime函数。

class dateTranslator {

 public static function translate($date, $lang) {
      $divider = '';

      if (empty($date)){
           return null;   
      }
      if (strpos($date, '-') !== false) {
           $divider = '-';
      } else if (strpos($date, '/') !== false) {
           $divider = '/';
      }
      //spanish format DD/MM/YYYY hh:mm
      if (strcmp($lang, 'es') == 0) {

           $type = explode($divider, $date)[0];
           if (strlen($type) == 4) {
                $date = self::reverseDate($date,$divider);
           } 
           if (strcmp($divider, '-') == 0) {
                $date = str_replace("-", "/", $date);
           }
      //english format YYYY-MM-DD hh:mm
      } else {

           $type = explode($divider, $date)[0];
           if (strlen($type) == 2) {

                $date = self::reverseDate($date,$divider);
           } 
           if (strcmp($divider, '/') == 0) {
                $date = str_replace("/", "-", $date);

           }   
      }
      return $date;
 }

 public static function reverseDate($date) {
      $date2 = explode(' ', $date);
      if (count($date2) == 2) {
           $date = implode("-", array_reverse(preg_split("/\D/", $date2[0]))) . ' ' . $date2[1];
      } else {
           $date = implode("-", array_reverse(preg_split("/\D/", $date)));
      }

      return $date;
 }

采用

dateTranslator::translate($date, 'en')

1

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

此转换器几乎将接受任何输入,包括任何标准日期时间格式(包括或不包括毫秒)任何时间周期表示形式(包括或不包括毫秒),并将其转换成几乎任何其他格式。

调用它:

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

为该格式发送null将使该函数以Epoch / Unix Time返回日期时间。否则,发送date()支持的任何格式字符串,以及“ .u”以毫秒为单位(即使date()返回零,我也处理毫秒)。

这是代码:

        <?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

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

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.