显示日期格式

时间:2011-02-22 05:51:30

标签: php codeigniter

我希望显示2011年3月2日就像'02 -March-2011'。

7 个答案:

答案 0 :(得分:14)

只需用您的值

替换硬编码日期
$timestamp = strtotime('2-March-2011');
$newDate = date('d-F-Y', $timestamp); 
echo $newDate; //outputs 02-March-2011

答案 1 :(得分:12)

<?php
    // Assuming today is March 10th, 2001, 5:16:18 pm, and that we are in the
    // Mountain Standard Time (MST) Time Zone

    $today = date("j-F-Y");                          // 10-March-2001
    $today = date("F j, Y, g:i a");                 // March 10, 2001, 5:16 pm
    $today = date("m.d.y");                         // 03.10.01
    $today = date("j, n, Y");                       // 10, 3, 2001
    $today = date("Ymd");                           // 20010310
    $today = date('h-i-s, j-m-y, it is w Day');     // 05-16-18, 10-03-01, 1631 1618 6 Satpm01
    $today = date('\i\t \i\s \t\h\e jS \d\a\y.');   // it is the 10th day.
    $today = date("D M j G:i:s T Y");               // Sat Mar 10 17:16:18 MST 2001
    $today = date('H:m:s \m \i\s\ \m\o\n\t\h');     // 17:03:18 m is month
    $today = date("H:i:s");                         // 17:16:18
    ?>

请参阅此链接....

http://php.net/manual/en/function.date.php

答案 2 :(得分:4)

您可以使用正则表达式,字符串拆分,sprintf()等,但我宁愿使用本机DateTime对象。

$str = '2-March-2011';

$date = DateTime::createFromFormat('j-F-Y', $str);

var_dump($date->format('d-F-Y')); // string(13) "02-March-2011" 

See it

答案 3 :(得分:3)

将输入字符串转换为时间戳,然后根据需要对其进行格式化。有关格式化选项,请参阅http://php.net/manual/en/function.date.php

$input = '2-March-2011';
$time = strtotime($input);
$output = date('d-F-Y',$time);

简短版本:

echo date('d-F-Y',strtotime('2-March-2011'));

答案 4 :(得分:1)

快速跳到the documentation会发现其他人在说出这一点时是正确的:

echo date('d-F-Y', strtotime('2-March-2011'));

答案 5 :(得分:0)

如果您将日期作为Unix时间戳(例如:$date = time();),那么您可以使用内置的date()函数:

echo date('j-F-Y');

否则,您可以查看使用strtotime()http://www.php.net/manual/en/function.strtotime.php)将其纳入Unix时间,或者使用更强的面向对象的方法,如 alex 所示。

答案 6 :(得分:0)

代码示例:回音日期('d-F-Y',strtotime('2011-03-02'));

您可以通过多种方式格式化日期 在这里,您可以找到所有格式date format