私が使用する関数の日付:
public function datetime() {
$today = getdate();
$datetime = $today['year'].'-'.$today['mon'].'-'.$today['mday'].' '.
($today['hours']+8).':'.$today['minutes'].':'.$today['seconds'];
return $datetime;
}
2 つのサーバー [ A と B ] があります: Windows を使用するサーバー A、Linux を使用するサーバー B
どちらのサーバーも日付と時刻は同じですが、このphpコードを実行すると、時刻の出力が異なります。
何故ですか ?