From 95ba326826d0b84fffb266e1636b617dfdb93230 Mon Sep 17 00:00:00 2001 From: ppetrov Date: Fri, 8 Sep 2017 11:18:58 +0300 Subject: [PATCH] Remove collapsable sections to improve readability --- README.md | 25 ++++++------------------- 1 file changed, 6 insertions(+), 19 deletions(-) diff --git a/README.md b/README.md index 5949730..87edde6 100644 --- a/README.md +++ b/README.md @@ -80,7 +80,7 @@ $rows = $csv->to_array(); Please note, that skipping methods work with zero based indexes. ``` -
skip_to_row +#### skip_to_row To skip to a specific row, simply pass the index of the row. @@ -133,9 +133,7 @@ Array ``` -
- -
skip_to_column +#### skip_to_column To skip to a specific column, simply pass the index of the column. @@ -189,9 +187,7 @@ Array ``` -
- -
skip_columns +#### skip_columns To skip multiple columns, pass the indexes of those columns as an array. @@ -245,9 +241,7 @@ Array ``` -
- -
use_first_row_as_header +#### use_first_row_as_header To use the first row from the CSV, simply call this method. @@ -305,9 +299,7 @@ Array Since we're telling the parser to use the first row as a header row, it is assigned and skipped. -
- -
set_column_names +#### set_column_names If you wish to use your own indexes for the columns, pass them using an array. @@ -443,9 +435,7 @@ Array ) ``` -
- -
count +#### count Get the total number of rows in the CSV file (please note, that this skips the empty rows); @@ -458,6 +448,3 @@ $total_number_of_rows = $csv->count(); ``` `$total_number_of_rows = $csv->count()` is equivalent to `count($csv->to_array())`. - -
-