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

在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

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

644828 次浏览

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

你需要将$old_date转换回一个时间戳,因为日期函数需要一个时间戳作为它的第二个参数。

试试这个:

$old_date = date('y-m-d-h-i-s');
$new_date = date('Y-m-d H:i:s', strtotime($old_date));
$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);

最简单的方法是

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

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

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

如果你不想从一种日期格式转换到另一种,而只是想要特定格式的当前日期(或datetime),那么就更容易了:

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

另一个问题也指向同一个主题:转换日期格式yyyy-mm-dd =>dd-mm-yyyy

$datedd-mm-yyyy hh:mm:ss转换为正确的MySQL datetime 我这样写:

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

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

最基本的

将一种日期格式转换为另一种日期格式的最简单方法是使用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');

试试这个:

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

下面是一个将日期转换为不同格式的简单方法。

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

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

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

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

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

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

这个问题解决了,

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

输出:2018-04-18

我知道这很老了,但是,在遇到一个供应商在他们的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,因此,我不需要时区支持。不过,添加起来很简单。

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

在PHP中,可以使用不同的场景将任何日期转换为所需的日期格式,例如将任何日期格式转换为日,日,月,年

$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

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

碳的构造函数可以被传递一个日期字符串(任何可以被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格式输出。