im getting a weird behavior with this code
foreach ($files as $key => $error) {
if ($error == UPLOAD_ERR_OK) {
$name = $_FILES["excelFiles"]["name"][$key];
$handle = fopen($_FILES["excelFiles"]["tmp_name"][$key], "r");
while (($data = fgetcsv($handle, 1000, ",")) !== FALSE) {
print_r($data);
echo "\r\n";
}
fclose($handle);
}}
the thing is that hebrew strings that have an apostrophe get clipped (just vanishes in the thin air)
this is one row result for example :
Array
(
[0] => '
[1] => אני לא רעבה, תודה
)