$File = fopen('php://output', 'w');
ob_start();
fputs($File, chr(0xEF) . chr(0xBB) . chr(0xBF)); // BOM
fputcsv($File, ['Ссылка 1', 'Сылка2'],";");
fclose($File);
$sCsv = ob_get_contents();
ob_end_clean();
header("Content-type: text/csv");
header('Content-Disposition: attachment; filename="file.xls"');
header("Pragma: no-cache");
header("Expires: 0");
echo $sCsv;