質問編集履歴

1

エラーを全文記載しました

2021/09/03 13:07

投稿

gasuketu
gasuketu

スコア10

test CHANGED
File without changes
test CHANGED
@@ -20,7 +20,7 @@
20
20
 
21
21
  $results = [];
22
22
 
23
- function combinationSearcher($sum,$currentArray,$candidators,$target){
23
+ function combinationSearcher($sum,$currentArray,$candidators,$target){
24
24
 
25
25
  if($sum === $target){
26
26
 
@@ -68,7 +68,7 @@
68
68
 
69
69
  ```
70
70
 
71
- 結果は[]となり、おそらく関数combinationSearcherに$resultが参照渡しされていないからだろうと思い以下のようなコードを書いたのですが、cannot redeclere combinationSearcherというエラーが出てしまいます。
71
+ 結果は[]となり、おそらく関数combinationSearcherに$resultが参照渡しされていないからだろうと思い以下のようなコードを書いたのですが、PHP Fatal error: Cannot redeclare combinationSum() (previously declared in solution.php:10) in solution.phpというエラーが出てしまいます。
72
72
 
73
73
 
74
74
 
@@ -90,7 +90,7 @@
90
90
 
91
91
  $results = [];
92
92
 
93
- function combinationSearcher($sum,$currentArray,$candidators,$target,&$results){ //変更
93
+ function combinationSearcher($sum,$currentArray,$candidators,$target,&$results){ //変更 ここでエラー
94
94
 
95
95
  if($sum === $target){
96
96