Parsing Twitter API Datestamp(解析 Twitter API 日期戳)
问题描述
我正在使用 twitter API 返回状态更新列表及其创建时间.它以以下格式返回创建日期:
I'm using the twitter API to return a list of status updates and the times they were created. It's returning the creation date in the following format:
2010 年 4 月 9 日星期五 12:53:54 +0000
Fri Apr 09 12:53:54 +0000 2010
将其格式化为 09-04-2010 的最简单方法是什么(使用 PHP 或 Javascript)?
What's the simplest way (with PHP or Javascript) to format this like 09-04-2010?
推荐答案
strtotime("dateString");
把它变成原生 PHP 日期格式,然后就可以使用 date()
函数打印出你想要的方式.
strtotime("dateString");
gets it into the native PHP date format, then you can work with the date()
function to get it printed out how you'd like it.
这篇关于解析 Twitter API 日期戳的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:解析 Twitter API 日期戳


基础教程推荐
- Web 服务器如何处理请求? 2021-01-01
- php中的foreach复选框POST 2021-01-01
- php 7.4 在写入变量中的 Twig 问题 2022-01-01
- 主题化 Drupal 7 的 Ubercart “/cart"页 2021-01-01
- Yii2 - 在运行时设置邮件传输参数 2022-01-01
- php中的PDF导出 2022-01-01
- 将变量从树枝传递给 js 2022-01-01
- 使用 scandir() 在目录中查找文件夹 (PHP) 2022-01-01
- PHPUnit 的 Selenium 2 文档到底在哪里? 2022-01-01
- 如何在数学上评估像“2-1"这样的字符串?产生“1"? 2022-01-01