If you don't want to define an enclosure charachter you can do the following:
<?php
$row = fgetcsv($handle, 0, $delimiter, 0x00);
?>
I needed this to detect the enclosure used for csv files.
If you don't want to define an enclosure charachter you can do the following:
<?php
$row = fgetcsv($handle, 0, $delimiter, 0x00);
?>
I needed this to detect the enclosure used for csv files.