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条)

报告相同问题?

悬赏问题

  • ¥15 pnpm 下载element-plus
  • ¥15 解决编写PyDracula时遇到的问题
  • ¥15 有没有人能解决下这个问题吗,本人不会编程
  • ¥15 plotBAPC画图出错
  • ¥30 关于#opencv#的问题:使用大疆无人机拍摄水稻田间图像,拼接成tif图片,用什么方法可以识别并框选出水稻作物行
  • ¥15 Python卡尔曼滤波融合
  • ¥20 iOS绕地区网络检测
  • ¥15 python验证码滑块图像识别
  • ¥15 根据背景及设计要求撰写设计报告
  • ¥20 能提供一下思路或者代码吗