php时间字符串从时间开始的时间偏移

时间:2013-07-02 23:07:32

标签: php datetime time-format

php有任何内置功能可以将可读time-string(压力timenot datetime)转换为strtotime允许的相同宽松格式,以秒为单位从偏差开始一天。

php DateTimestrtotime似乎只适用于日期时间 比如“12-07-13 10:30:00”

我真正想要的是通用时间(没有日期),如“晚上10:30”或“23:30或”13-15“等。

应该变成类似“81000”,“84600”,“47700”

的东西

1 个答案:

答案 0 :(得分:2)

你真的需要一个内置函数来做:

$seconds = strtotime('10:30 pm') - strtotime('00:00');
var_dump($seconds);