質問編集履歴

2

質問文

2021/02/16 08:11

投稿

hoshino2424
hoshino2424

スコア6

test CHANGED
File without changes
test CHANGED
@@ -1,3 +1,9 @@
1
+ 配列から指定した複数文字をカウントしたいです。
2
+
3
+ 配列から配列を検索することは可能でしょうか?
4
+
5
+
6
+
1
7
  ```ここに言語を入力
2
8
 
3
9
  <?php

1

code機能の使用

2021/02/16 08:11

投稿

hoshino2424
hoshino2424

スコア6

test CHANGED
File without changes
test CHANGED
@@ -1,3 +1,5 @@
1
+ ```ここに言語を入力
2
+
1
3
  <?php
2
4
 
3
5
  $bangou=array('1','2','3','4','5');
@@ -8,13 +10,19 @@
8
10
 
9
11
  ?>
10
12
 
13
+ ```
14
+
11
15
 
12
16
 
13
17
  期待する出力:2
14
18
 
15
19
 
16
20
 
21
+ 出現するエラー:
22
+
23
+ ```ここに言語を入力
24
+
17
- 出現するエラー:PHP Fatal error: Uncaught TypeError: substr_count(): Argument #1 ($haystack) must be of type string, array given in /workspace/Main.php:4
25
+ PHP Fatal error: Uncaught TypeError: substr_count(): Argument #1 ($haystack) must be of type string, array given in /workspace/Main.php:4
18
26
 
19
27
  Stack trace:
20
28
 
@@ -24,6 +32,8 @@
24
32
 
25
33
  thrown in /workspace/Main.php on line 4
26
34
 
35
+ ```
36
+
27
37
 
28
38
 
29
39
  よろしくお願いします