0
$selectedDate = "1365465600";
echo $selectedDate;//Output : 1365465600
echo date("Y-m-d",$selectedDate);//Output : 2013-04-09
echo strtotime(date("Y-m-d",$selectedDate));//Output : 1365445800

最後のステートメントが出力を生成しなかった理由: 1365465600. ここで何が問題なのですか?

4

1 に答える 1