gpt4 book ai didi

php - 在 PHP 中转换肥皂时间

转载 作者:可可西里 更新时间:2023-11-01 12:36:21 26 4
gpt4 key购买 nike

我正在获取以下格式的时间作为 API 调用的响应。我如何将它转换为 Y-m-d H:i:s 我使用了以下内容:

$time_other_format = '2013-10-29T08:34:01-0700';

$time = date("Y-m-d H:i:s",strtotime($time_other_format));

这是返回时间,但时间已更改,我认为是根据时区。我在 DB 中有记录,这些记录是在 session 之前插入的,因此保留原始时间并进行比较。我怎样才能像那样转换它。我的意思是我需要在转换后将时间设为 08:34:01

最佳答案

$time_other_format = '2013-10-29T08:34:01-0700';
$dt = new DateTime($time_other_format);
echo $dt->format('Y-m-d H:i:s');

这会回显,

2013-10-29 08:34:01

DateTime PHP 中的类非常强大,几乎可以识别您输入的任何格式。它非常适合操纵。

关于php - 在 PHP 中转换肥皂时间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20264769/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com