Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
時間をGMTからESTに変更する必要があります。使用しているコードは次のとおりです
$currenttime = date(H . ":" . i);
PHP 4 を使用しています。
いくつかのことを試してみましたが、PHP 4ビットが原因で何も機能しません。助けていただければ幸いです。
時間計算を行う前にこれを入れてください date_default_timezone_set('EST');
date_default_timezone_set('EST');
また、日付形式が間違っています。次のようにします。$currenttime = date("H:i");
$currenttime = date("H:i");