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 に答える