summaryrefslogtreecommitdiff
path: root/ext/spl/tests/SplFileObject_fputcsv_variation12.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/spl/tests/SplFileObject_fputcsv_variation12.phpt')
-rw-r--r--ext/spl/tests/SplFileObject_fputcsv_variation12.phpt8
1 files changed, 4 insertions, 4 deletions
diff --git a/ext/spl/tests/SplFileObject_fputcsv_variation12.phpt b/ext/spl/tests/SplFileObject_fputcsv_variation12.phpt
index aee1da3559..c4bc9f112d 100644
--- a/ext/spl/tests/SplFileObject_fputcsv_variation12.phpt
+++ b/ext/spl/tests/SplFileObject_fputcsv_variation12.phpt
@@ -8,8 +8,8 @@ SplFileObject::fputcsv(): Usage variations -- with default enclosure and differe
echo "*** Testing fputcsv() : with default enclosure and different delimiter value ***\n";
-/* the array is with three elements in it. Each element should be read as
- 1st element is delimiter, 2nd element is enclosure
+/* the array is with three elements in it. Each element should be read as
+ 1st element is delimiter, 2nd element is enclosure
and 3rd element is csv fields
*/
$csv_lists = array (
@@ -55,12 +55,12 @@ foreach ($csv_lists as $csv_list) {
//close the file
unset($fo);
- // print the file contents
+ // print the file contents
var_dump( file_get_contents($file) );
//delete file
unlink($file);
- } //end of mode loop
+ } //end of mode loop
} // end of foreach
echo "Done\n";