so I have this:
$handle = fopen($filepath, 'r');
$row = fgetcsv($handle, null, "\t", '"');
whereby $filepath contains a file with the following text:
"\A some text with space."
but then when I echo the contents of $row, it's not removing the enclosing quotations marks and the variable will still contain the entire string including the quotation marks despite the fact that there are spaces in them...
What did I do wrong?