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.
这是使用 DateTime 在 PHP 中获取当前时间的正确方法吗?
$currenttime = new DateTime(); $currenttime2 = $currenttime->format('H:i:s');
我相信你可以这样做
$date = date('Y-m-d H:i:s');
这将根据您在 php.ini 中的日期时间设置来设置时间。创建后执行 $currenttime 的 var_dump 以了解我的意思。你也可以使用 microtime(true); 获取unix时间戳,可以使用其他函数进行转换。