将 cursom 天/小时格式化为“工作时间和天”
我正在制作一个报价系统,我需要一种方法将
1 天 15 小时
转换为 2 天 7 小时
,其中每天包含 8 小时。
我可以访问天和小时变量,因此函数可以是
function formatWorkHours($days, $hours){
}
任何人都可以帮我解决这个问题吗?其他示例可以是 1 天 26 小时
。
谢谢!
I'm making a quoting system and I need a way to turn
1 days, 15 hours
into 2 days, 7 hours
where each day contains 8 hours.
I have access to both the days and hours variables so a function could be
function formatWorkHours($days, $hours){
}
Can anyone help me with this please? Other examples could be 1 days, 26 hours
.
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
像这样的事情应该可以解决问题:
Something like this should do the trick: