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");