質問編集履歴

2

文法の修正

2020/04/25 06:00

投稿

oitama
oitama

スコア8

test CHANGED
File without changes
test CHANGED
@@ -14,23 +14,27 @@
14
14
 
15
15
  ### 該当のソースコード
16
16
 
17
+ ```php
18
+
17
19
  $x=tokyo;
18
20
 
19
- print_r(explode(**1**,$x));
21
+ print_r(explode(1,$x));
20
22
 
21
-
23
+ ```
22
24
 
23
25
  ######出力結果
24
26
 
25
-
27
+ ```php
26
28
 
27
29
  PHP Warning: Use of undefined constant tokyo - assumed 'tokyo'
28
30
 
29
31
  (this will throw an Error in a future version of PHP) in /workspace/Main.php on line 10
30
32
 
31
-
33
+ ```
32
34
 
33
35
  ######期待する出力
36
+
37
+ ```php
34
38
 
35
39
  Array (
36
40
 
@@ -49,3 +53,5 @@
49
53
 
50
54
 
51
55
  )
56
+
57
+ ```

1

誤字

2020/04/25 06:00

投稿

oitama
oitama

スコア8

test CHANGED
File without changes
test CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
 
4
4
 
5
- 文字列を**1文字ずつ分割いときに**explode**を使ったのですが、エラーが起きてしまいます。
5
+ 文字列を**1文字ずつ分割したいときにexplode**を使ったのですが、エラーが起きてしまいます。
6
6
 
7
7
  どうしたらよいでしょうか?
8
8