updated examples for using new classname

This commit is contained in:
Susann Sgorzaly
2018-02-18 12:43:19 +01:00
parent 17ac1dee1a
commit 76a0406eff
4 changed files with 9 additions and 9 deletions

View File

@@ -2,11 +2,11 @@
# include parseCSV class.
require_once('../parsecsv.lib.php');
use ParseCsv\Csv;
# create new parseCSV object.
$csv = new parseCSV();
$csv = new Csv();
# Parse '_books.csv' using automatic delimiter detection...
@@ -31,4 +31,4 @@ $csv->output('books.csv');
# or is set to null, output will only return the generated CSV
# output data, and will not output to the browser itself.
?>
?>