如何在 Perl & 中根据日期时间比较两个字符串php?
我有(日期时间)格式的字符串 - “Mon, 11 Jul 2011 11:45:07 +08:00”,我需要根据日期时间格式比较此类字符串,以查找最新的字符串。我应该在这里使用哪个模块/方法?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我有(日期时间)格式的字符串 - “Mon, 11 Jul 2011 11:45:07 +08:00”,我需要根据日期时间格式比较此类字符串,以查找最新的字符串。我应该在这里使用哪个模块/方法?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(5)
我在 Perl 中使用 Date::Manip为了这:
I use Date::Manip in Perl for this:
对于 PHP,最简单的方法是使用 strtotime() 转换时间字符串并比较整数值。最大的整数是最新的。
请注意,如果您未设置默认时区,某些版本的 PHP 会在使用日期函数时向您发出警告。您可以使用
date_default_timezone_set("")
或 php.ini 的date.timezone = ""
以及 支持的时区列表。For PHP, the easiest way would be converting the time strings with strtotime() and comparing the integer values. Highest integer is the latest.
Note that some versions of PHP will warn you when using Date functions if you have not set your default timezone. You can do so with
date_default_timezone_set("")
or php.ini'sdate.timezone = ""
, with the list of supported timezones.在 PHP 中,称为 strtotime()
In PHP it's called strtotime()
您可以在您拥有的时间戳上尝试 strtotime() 。然后只需使用普通比较器比较数字即可。
you can try strtotime() on the timestamp you have. then just compare the numbers using normal comparators.