转换yyyy-mm-dd hh:mm:ss到dayoftheweek,dd of monthname yyyy

时间:2013-02-27 23:15:42

标签: php date

我几乎有这个

$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日的输出

我怎样才能得到星期几的名字?

2 个答案:

答案 0 :(得分:1)

使用2005-05-12的日期:

echo date("l", mktime(0, 0, 0, 5, 12, 2005)); 
你得到'星期四'。

答案 1 :(得分:1)

你可以这样做,

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

您的输出将是这样的

Sunday 5 of May 2013