PHP函数识别并解析异常时间格式?
我目前正在使用天气数据源来收集一些准确的数据。此特定源是从挪威提取的,格式为 2012-01-13T19:00:00。 “T”让我失望。
有谁知道 PHP 是否会识别这种格式和/或提供一个函数来解析这个特定的时间戳?
我本以为 strtotime() 和 date() 的组合,但显然它只接受英文格式?我宁愿避免使用正则表达式来删除 T,但如果有必要,我会使用它。
非常感谢您的帮助。
I'm currently working with weather data feeds to assemble some accurate data. This particular feed is being pulled from Norway and has a format of 2012-01-13T19:00:00. The "T" is what throws me off.
Does anyone know if PHP will recognize this format and/or provide a function to parse this particular timestamp?
I would have thought a combo of strtotime() and date(), but apparently it only accepts English formats? I would prefer to avoid doing a regex to strip out the T but if it's necessary I'll work with it.
Many thanks for the help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,PHP 会识别它,因为这是一个标准化格式。
Yes, PHP will recognize it, because that's a standardized format.