My favorites | Sign in
Project Home Downloads Wiki Issues Source
Search
for
countRows  
Updated Feb 4, 2010 by kazu....@gmail.com

Method:countRows

row counter

This function will exclude the headers

sample of a csv file "my_cool.csv"

name,age,skill
john,13,knows magic
tanaka,8,makes sushi
jose,5,dances salsa

php implementation

$csv = new File_CSV_DataSource;
$csv->load('my_cool.csv');
var_export($csv->countRows()); // returns 3
  • Visibility public
  • Returns integer

Sign in to add a comment
Powered by Google Project Hosting