質問編集履歴
1
データ受信情報をより詳しく書きました。
test
CHANGED
File without changes
|
test
CHANGED
@@ -62,6 +62,32 @@
|
|
62
62
|
|
63
63
|
|
64
64
|
|
65
|
+
### 時間データ受信のソースコード
|
66
|
+
|
67
|
+
|
68
|
+
|
69
|
+
```PHP
|
70
|
+
|
71
|
+
public function commit()
|
72
|
+
|
73
|
+
{
|
74
|
+
|
75
|
+
$args = $this->input->post();
|
76
|
+
|
77
|
+
$task = $args['take'];
|
78
|
+
|
79
|
+
$task["time"] = implode(":", $args["time"]);
|
80
|
+
|
81
|
+
|
82
|
+
|
83
|
+
$this->_m("work_takes")->trans_start();
|
84
|
+
|
85
|
+
}
|
86
|
+
|
87
|
+
```
|
88
|
+
|
89
|
+
|
90
|
+
|
65
91
|
### 試したこと
|
66
92
|
|
67
93
|
|