So, my code generates a CSV file using PHP\'s built-in fputcsv function.
For the delimiter, I use \',\' (a comma). For the enclosure, I use \'
\',\'
\'
I think solution will be like this,
$order_header_arr = array("Item1", "Item2","This is Item3"); fputcsv($fp, $order_header_arr,',',' ');
remember " "[Space] Between third parameter of fputcsv
" "