我有一个类似“6:15 pm”的字符串。 PHP中是否有任何函数可以将其直接转换为24小时格式。即到“18:15”?

最佳答案

我建议将 strtotime() date() 一起使用:

print date("H:i", strtotime("6:15pm"));

关于PHP的12小时格式到24小时格式时间转换,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/1984334/

10-10 22:29