As we know, there is a function in PHP called fputcsv that can transfer array into CSV line.
However, if you make a CSV file only with these CSV lines, containing UTF8 characters, the generated CSV file will became a chaos in Excel.
Solution example:
$fp = fopen("php://temp", 'r+');
fprintf($fp, c
- 2012
- 2011
- 2010
