回答編集履歴

2

追記

2018/06/29 03:18

投稿

efcode
efcode

スコア422

test CHANGED
@@ -7,3 +7,5 @@
7
7
  $時=$time/60/60%24; // /分 /秒 %時
8
8
 
9
9
  $日=$time/24/60/60; // /時 /分 /秒
10
+
11
+ [PHP: round - Manual](http://php.net/manual/ja/function.round.php)

1

精査

2018/06/29 03:18

投稿

efcode
efcode

スコア422

test CHANGED
@@ -1,9 +1,9 @@
1
- time=123456789
1
+ $time=123456789;
2
2
 
3
- 秒=time
3
+ $秒=$time%60; // %秒
4
4
 
5
- 分=time/60()
5
+ $分=$time/60%60; // / %分
6
6
 
7
- 時=time/60(分)/60()
7
+ $時=$time/60/60%24; // /分 / %時
8
8
 
9
- 日=time/24(時)/60(分)/60()
9
+ $日=$time/24/60/60; // /時 /分 /