Last.fm API - 曲目时长
I'm using the Last.fm API and I stuck on something seemingly fairly simple.
One of the responses is the duration. Which is returned as:
222000
But how do I format (in PHP) this to look like
MIN:SEC
3:42
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看起来持续时间以毫秒为单位。 只需除以 1000 即可得到秒数。
It looks like the duration is in milliseconds. Just divide by 1000 to get the number of seconds.