$file = "file.csv";
$csv = new SplFileObject($file);
$csv -> setFlags(SplFileObject::READ_CSV);
$csv -> setCsvControl(';'); //separator change if you need
foreach( $csv as $ligne){
print_r($ligne); //$ligne is an array
}
$csvFile = file('../somefile.csv');
$data = [];
foreach ($csvFile as $line) {
$data[] = str_getcsv($line);
}
$row = 1;
if (($handle = fopen("test.csv", "r")) !== FALSE) {
while (($data = fgetcsv($handle, 1000, ",")) !== FALSE) {
$num = count($data);
echo "<p> $num fields in line $row: <br /></p>
";
$row++;
for ($c=0; $c < $num; $c++) {
echo $data[$c] . "<br />
";
}
}
fclose($handle);
}
<?php
ini_set('auto_detect_line_endings',TRUE);
$handle = fopen('/path/to/file','r');
while ( ($data = fgetcsv($handle) ) !== FALSE ) {
//process the array in $data
var_dump($data);
}
ini_set('auto_detect_line_endings',FALSE);
<?php
$CSVfp = fopen("fruits.csv", "r");
if ($CSVfp !== FALSE) {
while (! feof($CSVfp)) {
$data = fgetcsv($CSVfp, 1000, ",");
print_r($data);
}
}
fclose($CSVfp);
?>
$file = "file.csv";
$csv = new SplFileObject($file);
$csv -> setFlags(SplFileObject::READ_CSV);
$csv -> setCsvControl(';'); //separator change if you need
foreach( $csv as $ligne){
print_r($ligne); //$ligne is an array
}
$csvFile = file('../somefile.csv');
$data = [];
foreach ($csvFile as $line) {
$data[] = str_getcsv($line);
}
$row = 1;
if (($handle = fopen("test.csv", "r")) !== FALSE) {
while (($data = fgetcsv($handle, 1000, ",")) !== FALSE) {
$num = count($data);
echo "<p> $num fields in line $row: <br /></p>
";
$row++;
for ($c=0; $c < $num; $c++) {
echo $data[$c] . "<br />
";
}
}
fclose($handle);
}
<?php
ini_set('auto_detect_line_endings',TRUE);
$handle = fopen('/path/to/file','r');
while ( ($data = fgetcsv($handle) ) !== FALSE ) {
//process the array in $data
var_dump($data);
}
ini_set('auto_detect_line_endings',FALSE);
<?php
$CSVfp = fopen("fruits.csv", "r");
if ($CSVfp !== FALSE) {
while (! feof($CSVfp)) {
$data = fgetcsv($CSVfp, 1000, ",");
print_r($data);
}
}
fclose($CSVfp);
?>