質問編集履歴
1
誤表記がいくつかあったので修正しました。
title
CHANGED
File without changes
|
body
CHANGED
@@ -18,10 +18,10 @@
|
|
18
18
|
]
|
19
19
|
```
|
20
20
|
|
21
|
-
上記のような配列$
|
21
|
+
上記のような配列$studentListをカンマで分解し多次元配列を作成したいのですが、自分が作成したループ
|
22
22
|
|
23
23
|
```php
|
24
|
-
foreach ($
|
24
|
+
foreach ($studentList as $key => $value) {
|
25
25
|
$explodedValue = explode(',', $value);
|
26
26
|
$arrResult = [
|
27
27
|
$explodedValue[0] => [
|