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.
今天的日期是正确的,但是我现在提前 30 分钟获得样品时间印度时间是 10:30,我得到了晚上 11:00
日期工作,但为什么时间是错误的。
<?php date_default_timezone_set("Asia/Calcutta"); $dates = date('Y-m-d h:i:s', time()); echo $dates; ?>
你不想给时间戳
尝试这个
$dates = date('Y-m-d h:i:s');
可能的原因 -
我已经在这里为您的时区成功运行了此程序(Linux RHEL6,包 tzdata-2011d-1.el6.noarch)