回答編集履歴
1
修正
answer
CHANGED
@@ -2,9 +2,8 @@
|
|
2
2
|
|
3
3
|
```lang-php
|
4
4
|
$idx = array(
|
5
|
-
'PHP'
|
5
|
+
'PHP' => array(0,2) //"PHP"に該当するのは$array[0]と$array[2]
|
6
|
-
, 'PHPer' => array(2)
|
6
|
+
, 'PHPer' => array(2) //"PHPer"に該当するのは$array[2]
|
7
|
-
|
8
7
|
);
|
9
8
|
```
|
10
9
|
|