gpt4 book ai didi

php - 日期 ('Y-m-d H:i:s' ,$usr_profile->getCreatedAt()) 出现错误的问题?

转载 作者:行者123 更新时间:2023-11-29 14:43:28 25 4
gpt4 key购买 nike

我正在尝试将 MYSQL 日期解析为 Y-m-d H:i:s 格式并收到错误:

 //theses lines ok
echo $now = date('Y-m-d H:i:s',$_SERVER['REQUEST_TIME'])."<br/>";
echo $nowday = date('d',$_SERVER['REQUEST_TIME'])."<br/>";
echo $nowmonth = date('m',$_SERVER['REQUEST_TIME'])."<br/>";


echo $userdate = $usr_profile->getCreatedAt()."<br/>";
echo $newdate = date('Y-m-d H:i:s',$userdate)."<br/>"; //line 67 error
echo $usermonth = date('m',$newdate)."<br/>"; //line 68 error



2011-01-21 08:44:07

注意:在/home/helloises/github_mira/rainbow_code/phoenix/plugins/rainbowCodePlugin/modules/profile/templates/homeSuccess.php 第 67 行 1970-01-01 00:33:31 中遇到格式不正确的数值注意:在/home/helloises/github_mira/rainbow_code/phoenix/plugins/rainbowCodePlugin/modules/profile/templates/homeSuccess.php 第 68 01 行遇到格式不正确的数值

我不明白...我需要检查两个日期(现在和用户日期)之间的差异是否大于 24 小时我尝试了一些东西,比如 strtotime、create_date、format_date、DateTime() 但现在有用请帮忙?

谢谢

最佳答案

您可以尝试将 $newdate 包装在 strtotime 中:

$newdate = date('Y-m-d H:i:s', strtotime($userdate))."<br/>"

关于php - 日期 ('Y-m-d H:i:s' ,$usr_profile->getCreatedAt()) 出现错误的问题?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7511737/

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