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

时间:2010-01-30 12:58:56

标签: php date datetime format date-conversion

有没有一种简单的方法可以在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

但我当然希望它能够返回当前的日期,而不是裂缝。我做错了什么?

17 个答案:

答案 0 :(得分:270)

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

答案 1 :(得分:95)

最简单的方法是

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

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

这也避免了使用strtotime,有时难以使用。

如果您没有从一种日期格式转换为另一种日期格式,但只想要特定格式的当前日期(或日期时间),那么它就更容易了:

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

这个问题也涉及同一主题:Convert date format yyyy-mm-dd => dd-mm-yyyy

答案 2 :(得分:45)

基础知识

将一种日期格式转换为另一种日期格式的简单方法是将strtotime()date()一起使用。 strtotime()会将日期转换为Unix Timestamp。然后可以将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()要求日期位于valid format。未能提供有效格式将导致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);
  • 将substr除以1000

您还可以通过除以1000将时间戳转换为秒。由于时间戳对于32位系统来说太大而无法进行数学计算,因此您需要使用BCMath库来将数学作为字符串进行处理:< / p>

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

答案 3 :(得分:26)

试试这个:

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

答案 4 :(得分:14)

$datedd-mm-yyyy hh:mm:ss转换为正确的MySQL日期时间 我是这样的:

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

答案 5 :(得分:9)

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

OR


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

答案 6 :(得分:9)

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

// 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";

答案 7 :(得分:6)

您需要将$ old_date转换回时间戳,因为date function需要时间戳作为其第二个参数。

答案 8 :(得分:6)

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

答案 9 :(得分:4)

试试这个:

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

答案 10 :(得分:4)

这为我解决了,

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

输出:2018-04-18

答案 11 :(得分:4)

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

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

答案 12 :(得分:1)

这是您可以转换日期格式的另一种方式

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

答案 13 :(得分:0)

只是使用字符串,对我来说是一个很好的解决方案,而不是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')

答案 14 :(得分:0)

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

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

要调用它:

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

为该格式发送null将使该函数返回Epoch / Unix Time中的日期时间。否则,发送任何格式的字符串,日期()载体,以及用“.U”为毫秒(I处理毫秒为好,即使日期()返回零)。

代码如下:

        <?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,因此,我不需要时区支持。不过,添加起来很简单。

答案 15 :(得分:0)

在php中更改日期格式的最简单方法

在PHP中,可以使用不同的方案将任何日期转换为所需的日期格式,例如将任何日期格式更改为Day,Date Month Year。

$newdate = date("D, d M Y", strtotime($date));

它将以以下格式显示日期

2020年11月16日,星期一

如果您还具有现有日期格式的时间,例如,如果您具有SQL 2020-11-11 22:00:00的日期时间格式,则可以使用以下命令将其转换为所需的日期格式

$newdateformat = date("D, d M Y H:i:s", strtotime($oldateformat));

它将以以下格式显示日期

2020年11月15日,星期日16:26:00

答案 16 :(得分:0)

为了完整起见,我将使用 Carbon 库添加一个答案,该库在 Laravel 框架等大型项目中非常常见并使用。

Carbon constructor 可以传递一个日期字符串(strtotime() 可以识别的任何内容)或一个 DateTime 对象。如果您正在处理无法轻松解析的日期字符串,Carbon 提供了 Carbon::createFromFormat() 静态创建者方法。

$carbon = new Carbon("January 3 2025 4:28 am");
// or
$date = new \DateTime("January 3 2025 4:28 am");
$carbon = new Carbon($date);
// or
$carbon = Carbon::createFromFormat("Y-d-m/H:i", "2025-03-01/04:28");

现在您有了一个原生 Carbon 对象,您可以使用 Carbon::format() 方法以您需要的任何格式输出它:

echo $carbon->format("l jS \\of F Y h:i A");
// Friday 3rd of January 2025 04:28 AM

有很多辅助方法可以快速输出某些格式,例如Carbon::toDateTimeString()以MySQL格式输出。