gpt4 book ai didi

php - 在 PHP 中将 ISO 8601 格式转换为 d M Y

转载 作者:行者123 更新时间:2023-12-02 06:39:25 26 4
gpt4 key购买 nike

PHP代码:

echo date("c");  //out put like this 2012-06-19T20:37:44+05:30   
echo date("d M, Y"); //out put "Jun 19,2012"

$time=date("c");
echo date("d M, Y",$time);// This is not working. What could the reason be?

我的要求是将 ISO8601 格式转换为 'd M ,Y'。我需要这种格式的它才能与 timeago jQuery plugin 一起使用.

最佳答案

您需要使用 strtotime()功能。

echo date("d M, Y",strtotime(date("c")));

关于php - 在 PHP 中将 ISO 8601 格式转换为 d M Y,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11104068/

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