0

我几乎有这个

$this->fecha = '2013 05-05 05:55:05'
$yearvalue = date("Y", strtotime($this->fecha) );
$monthname = date("F", strtotime($this->fecha) );
$dayvalue = date("d", strtotime($this->fecha) );
$printFecha = "$dayvalue of $monthname $yearvalue";

输出 2013 年 5 月 5 日

如何获取星期几的名称?

4

2 回答 2

1

使用日期 2005-05-12:

echo date("l", mktime(0, 0, 0, 5, 12, 2005)); 

你会得到“星期四”。

于 2013-02-27T23:18:41.943 回答
1

你可以这样做,

echo date('l j \of F Y', $this->date);

您的输出将是这样的

Sunday 5 of May 2013
于 2013-02-27T23:23:29.693 回答