summaryrefslogtreecommitdiff
path: root/ext/standard/tests/file/fgetcsv_variation23.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/standard/tests/file/fgetcsv_variation23.phpt')
-rw-r--r--ext/standard/tests/file/fgetcsv_variation23.phpt4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/standard/tests/file/fgetcsv_variation23.phpt b/ext/standard/tests/file/fgetcsv_variation23.phpt
index b766f1e062..a9b51f06a5 100644
--- a/ext/standard/tests/file/fgetcsv_variation23.phpt
+++ b/ext/standard/tests/file/fgetcsv_variation23.phpt
@@ -2,7 +2,7 @@
Test fgetcsv() : usage variations - empty file
--FILE--
<?php
-/*
+/*
Prototype: array fgetcsv ( resource $handle [, int $length [, string $delimiter [, string $enclosure]]] );
Description: Gets line from file pointer and parse for CSV fields
*/
@@ -12,7 +12,7 @@ Test fgetcsv() : usage variations - empty file
echo "*** Testing fgetcsv() : reading from file which is having zero content ***\n";
// try reading from file which is having zero content
-// create the file and then open in read mode and try reading
+// create the file and then open in read mode and try reading
$filename = dirname(__FILE__) . '/fgetcsv_variation23.tmp';
$fp = fopen ($filename, "w");
fclose($fp);