34 bool $quoteAll =
false,
35 string $separator =
";",
36 bool $outUTF8 =
false,
37 bool $compatibleWithMSExcel =
true 40 foreach ($row as $rowindex => $entry) {
45 if (strpos($entry,
"\"") !==
false) {
46 $entry = str_replace(
"\"",
"\"\"", $entry);
49 if (strpos($entry, $separator) !==
false) {
52 if ($compatibleWithMSExcel) {
54 $entry = str_replace(chr(13) . chr(10), chr(10), $entry);
58 $resultarray[$rowindex] =
"\"" . $entry .
"\"";
60 $resultarray[$rowindex] = utf8_decode(
"\"" . $entry .
"\"");
64 $resultarray[$rowindex] = $entry;
66 $resultarray[$rowindex] = utf8_decode($entry);
static & processCSVRow(array &$row, bool $quoteAll=false, string $separator=";", bool $outUTF8=false, bool $compatibleWithMSExcel=true)
Convertes an array for CSV usage.