viernes, 14 de octubre de 2016

Read and print the entire contents of a CSV file

Example #1 Read and print the entire contents of a CSV file
<?php
$row 
1;
if ((
$handle fopen("test.csv""r")) !== FALSE) {
    while ((
$data fgetcsv($handle1000",")) !== FALSE) {
        
$num count($data);
        echo 
"<p> $num fields in line $row: <br /></p>\n";
        
$row++;
        for (
$c=0$c $num$c++) {
            echo 
$data[$c] . "<br />\n";
        }
    }
    
fclose($handle);
}
?>
http://php.net/manual/en/function.fgetcsv.php

No hay comentarios:

Publicar un comentario