转换为日期格式dd / mm / yyyy

时间:2010-04-19 21:44:02

标签: php date format

我有以下日期: 2010-04-19 18:31:27 。我想将此日期转换为 dd / mm / yyyy 格式。

6 个答案:

答案 0 :(得分:81)

您可以使用正则表达式或一些手动字符串摆弄,但我认为我更喜欢:

date("d/m/Y", strtotime($str));

答案 1 :(得分:6)

<?php
$test1='2010-04-19 18:31:27';
echo date('d/m/Y',strtotime($test1));
?>

试试这个

答案 2 :(得分:3)

如果您的日期采用字符串格式,请使用爆炸功能

    array explode ( string $delimiter , string $string [, int $limit ] )
//In the case of your code

$length = strrpos($oldDate," ");
$newDate = explode( "-" , substr($oldDate,$length));
$output = $newDate[2]."/".$newDate[1]."/".$newDate[0];

希望以上工作现在

答案 3 :(得分:2)

如果您想这样做,还有DateTime个对象:http://www.php.net/manual/en/datetime.construct.php

答案 4 :(得分:-1)

试试这个:

$old_date = Date_create("2010-04-19 18:31:27");
$new_date = Date_format($old_date, "d/m/Y");

答案 5 :(得分:-3)

$source    =    'your varible name';
$date    =     new DateTime($source);
$_REQUEST["date"]    =     $date->format('d-m-Y');

echo $_REQUEST["date"];