File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
exercises/have-the-last-say/problem Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ Country: Austria, Capital: Vienna
12
12
13
13
The list of countries will be picked at random, so the CSV will be different each time your program runs.
14
14
15
- When using ` fgetcsv ` there a bunch of arguments which change the behaviour of the way the CSV is parsed. In our case we
15
+ When using ` fgetcsv ` there's a bunch of arguments which change the behaviour of the way the CSV is parsed. In our case we
16
16
want to change the ` separator ` argument, which defaults to a comma ` , ` . We need it to be the
17
17
pipe ` | ` character.
18
18
@@ -46,7 +46,7 @@ Note: only the values changed from the defaults are specified!
46
46
----------------------------------------------------------------------
47
47
## HINTS
48
48
49
- You will need to open the filer for writing before using ` fgetcsv ` you can do that using ` fopen ` .
49
+ You will need to open the file for writing before using ` fgetcsv ` you can do that using ` fopen ` .
50
50
51
51
` fgetcsv ` will return * one* line at a time
52
52
You can’t perform that action at this time.
0 commit comments