質問編集履歴

2

echo→return

2020/07/04 11:40

投稿

yuki-daru-ma
yuki-daru-ma

スコア0

test CHANGED
File without changes
test CHANGED
@@ -50,7 +50,7 @@
50
50
 
51
51
  $result = $api_response['one']; // 受け取る値が'two'になったときエラーになってしまう
52
52
 
53
- echo $result;
53
+ return $result;
54
54
 
55
55
  ```
56
56
 
@@ -98,7 +98,7 @@
98
98
 
99
99
 
100
100
 
101
- echo $result;
101
+ return $result;
102
102
 
103
103
  ```
104
104
 

1

$num→$result

2020/07/04 11:40

投稿

yuki-daru-ma
yuki-daru-ma

スコア0

test CHANGED
File without changes
test CHANGED
@@ -24,7 +24,7 @@
24
24
 
25
25
  ['one'=>1] なので
26
26
 
27
- $num = $api_response['one']; で展開できます。
27
+ $result = $api_response['one']; で展開できます。
28
28
 
29
29
 
30
30