summaryrefslogtreecommitdiff
path: root/ext/standard/tests/file/fgetcsv_variation30.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/standard/tests/file/fgetcsv_variation30.phpt')
-rw-r--r--ext/standard/tests/file/fgetcsv_variation30.phpt8
1 files changed, 4 insertions, 4 deletions
diff --git a/ext/standard/tests/file/fgetcsv_variation30.phpt b/ext/standard/tests/file/fgetcsv_variation30.phpt
index caedfba781..2cb570c8dc 100644
--- a/ext/standard/tests/file/fgetcsv_variation30.phpt
+++ b/ext/standard/tests/file/fgetcsv_variation30.phpt
@@ -14,8 +14,8 @@ Test fgetcsv() : usage variations - with file handle and length, file pointer po
echo "*** Testing fgetcsv() : with file handle and length arguments, file pointer pointing at end of file ***\n";
-/* the array is with two elements in it. Each element should be read as
- 1st element is delimiter & 2nd element is csv fields
+/* the array is with two elements in it. Each element should be read as
+ 1st element is delimiter & 2nd element is csv fields
*/
$csv_lists = array (
array(',', 'water,fruit'),
@@ -69,7 +69,7 @@ foreach ($csv_lists as $csv_list) {
// call fgetcsv() to parse csv fields
- // now file pointer should point to end of the file, try reading again
+ // now file pointer should point to end of the file, try reading again
var_dump( feof($file_handle) );
var_dump( fgetcsv($file_handle, 1024) );
// check the file pointer position and if eof
@@ -79,7 +79,7 @@ foreach ($csv_lists as $csv_list) {
fclose($file_handle);
//delete file
unlink($filename);
- } //end of mode loop
+ } //end of mode loop
} // end of foreach
echo "Done\n";