dongmeng1868 2014-03-25 17:24
浏览 50
已采纳

date_create_from_format()的问题

I am using a plugin to create wordpress posts from a twitter feed, and I am trying to edit it so the published time is the same as the tweeted time, rather than the time the cron was run.

Unfortunately, twitter's API returns an already formatted date string, instead of a timestamp, so I am having to parse it and then save it in a wordpress friendly format.

// Wed Jun 06 20:07:10 +0000 2012  (Twitter formatted date example)
// 2014-03-10 18:30:26             (Wordpress formatted date example)
$tweet_date = $tweet->created_at;
$tweet_date = date_create_from_format("D M d h:i:s O Y", $tweet_date);
$tweet_date = date("Y-m-d h:i:s", $tweet_date);

Unfortunately, all I am getting from this the Unix Epoch (Jan 1st, 1970).

I know I must be missing a step, but I can't figure out where.

  • 写回答

2条回答 默认 最新

  • douzhi4311 2014-03-25 17:27
    关注

    You had two issues:

    1) You were using h for hours when you meant H for 24 hour periods
    2) You need to use date_format() when using date_create_from_format() as that function returns a DateTime object which is not compatible with date()

    $tweet_date = date_create_from_format("D M d H:i:s O Y", 'Wed Jun 06 20:07:10 +0000 2012');
    echo date_format($tweet_date, 'Y-m-d H:i:s');
    

    See it in action

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥20 谁能帮我挨个解读这个php语言编的代码什么意思?
  • ¥15 win10权限管理,限制普通用户使用删除功能
  • ¥15 minnio内存占用过大,内存没被回收(Windows环境)
  • ¥65 抖音咸鱼付款链接转码支付宝
  • ¥15 ubuntu22.04上安装ursim-3.15.8.106339遇到的问题
  • ¥15 blast算法(相关搜索:数据库)
  • ¥15 请问有人会紧聚焦相关的matlab知识嘛?
  • ¥15 网络通信安全解决方案
  • ¥50 yalmip+Gurobi
  • ¥20 win10修改放大文本以及缩放与布局后蓝屏无法正常进入桌面