Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a file that I saved as a CSV file using Excel (I tried from both Windows 7 and Mac OSX to avoid any compatibility issues).

When I do this:

ini_set('auto_detect_line_endings', true);
$filename = 'import/clientsimport.csv';
$csvfile = file_get_contents($filename);
$csvarray = str_getcsv($csvfile);
print_r($csvarray);
mysql_close();

All the rows turn inte one row, and I get an array that is only 1 level deep and runs on and on to the thousands in keys.

So I tried an alternative approach:

ini_set('auto_detect_line_endings', true);
$filename = 'import/clientsimport.csv';
$csvfile = fopen($filename,'r');
$csvarray = fgetcsv($csvfile);
print_r($csvarray);

This ONLY returns the 1st row (row of headers) and doesn't go beyond it. How do I do this properly? There are hundreds of rows, and about a dozen arrays per row, so I should be getting a 2 dimensional one.

In the CSV, each row is broken by a linebreak, and values separated by commas - no enclosures.

share|improve this question

2 Answers

How about something like this:

$multiarray = array();
while ($linearray = fgetcsv($cvsfile)) {
   $multiarray[] = $linearray;
}
share|improve this answer
Beautiful, thanks! – Ain Tohvri Mar 6 at 9:03
up vote 0 down vote accepted

Solved the question by another search with different keywords:

php str_getcsv array issue

Has the answer. Basically I modified my file reading mechanism to:

$csvfile = fopen($filename,'rb');
while(!feof($csvfile)) {
$csvarray[] = fgetcsv($csvfile);
}

rb I assume is reading with linebreaks? And the while statement loops through the rows. I totally forgot how the fopen works in terms of breaking the content apart and having to loop through, unlike file_get_contents() which returns one long string only.

share|improve this answer
Thanks, i had the same issue. – Jleagle Dec 11 '12 at 13:45
The above is not working really and throws Warning: str_getcsv() expects parameter 1 to be string, resource given – Ain Tohvri Mar 6 at 8:59
The proposed solution works if altered the way Norseman Bjørne suggested in his answer. – Ain Tohvri Mar 6 at 9:05

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.