Merge pull request #140 from susgo/patch-1

Update README.md: corrected function name getTotalDataRowCount()
This commit is contained in:
Fonata
2018-04-11 08:30:21 +02:00
committed by GitHub

View File

@@ -99,7 +99,7 @@ print_r($csv->data);
```php
$csv = new ParseCsv\Csv();
$csv->load_data('data.csv');
$count = $csv->getTotalRowCount();
$count = $csv->getTotalDataRowCount();
print_r($count);
```