php - 转换时间:分钟:秒.第二个

Res*_*que 2 php time

我需要转换小时:分钟:秒(例如00:02:05 = 125s).在PHP中有没有为此功能构建或需要做一些数学运算?

小智 7

你可以尝试使用

strtotime('00:02:05') - strtotime('today'); //125
Run Code Online (Sandbox Code Playgroud)

演示