gpt4 book ai didi

PHP时间问题

转载 作者:行者123 更新时间:2023-11-29 04:03:57 25 4
gpt4 key购买 nike

好吧,我有一个类型的时间格式:2011-02-16T01:25:50+04:00

我想从字符串末尾去掉 +04:00。怎么做?

我正在使用此函数将时间戳从 mysql 格式转换为 ISO 8601 格式:

$timeagotime = date('c',strtotime($row['created_at']));

其中 $timeagotime 包含值:2011-02-16T01:25:50+04:00

最佳答案

引用php的date函数的文档:http://php.net/manual/en/function.date.php

您需要使用不同的格式字符串。例如,

date('Y-m-d',strtotime($row['created_at']));

给你“2011-02-16”。有许多格式字符串...查看文档。

关于PHP时间问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5009839/

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