/*
array fgetcsv ( resource $handle [, int $length = 0
[, string $delimiter = ","
[, string $enclosure = '"'
[, string $escape = "\" ]]]] )
*/
$row = 1;
if (($csv_file = fopen("e:/test.csv", "r")) !== FALSE)
{
while (($row_data = fgetcsv($csv_file, 1024, ",")) !== FALSE)
{
$num_fields = count($row_data);
echo "<p> Line $row: <br /></p>\n";
$row++;
for ($i = 0; $i < $num_fields; $i++)
echo $row_data[$i] . "<br />\n";
}
fclose($csv_file);
}
/*
run:
Line 1:
csv_post_title
csv_post_post
csv_post_excerpt
csv_post_categories
csv_post_tags
csv_post_date
csv_post_author
csv_post_slug
csv_ctax_art
csv_ctax_country
my_custom1
Line 2:
Vincent Van Gogh
Vincent Willem van Gogh 30 March
...
*/