[ Поиск ] - [ Пользователи ] - [ Календарь ]
Полная Версия: Экспорт в csv или xls
nudist
при экспорте в excel из php переносит не только нужные данные но и всю страницу

function download_send_headers($filename) {
// disable caching
$now = gmdate("D, d M Y H:i:s");
header("Expires: Tue, 03 Jul 2001 06:00:00 GMT");
header("Cache-Control: max-age=0, no-cache, must-revalidate, proxy-revalidate");
header("Last-Modified: {$now} GMT");

// force download
header("Content-Type: application/force-download");
header("Content-Type: application/octet-stream");
header("Content-Type: application/download");

// disposition / encoding on response body
header("Content-Disposition: attachment;filename={$filename}");
header("Content-Transfer-Encoding: binary");
}

function array2csv(array &$array, $titles) {
if (count($array) == 0) {
return null;
}
ob_start();
$df = fopen("php://output", 'w');
fputcsv($df, $titles, ';');
foreach ($array as $row) {
fputcsv($df, $row, ';');
}
fclose($df);
return ob_get_clean();
}

$titles = array("id", "Название");
$data = array(
array(1, 'Имя 1'),
array(2, 'Имя 2'),
array(3, 'Имя 3'),
array(4, 'Имя 4'),
array(5, 'Имя 5'),
array(5, 'Имя 6 с кавычкой " или \' '),
);


download_send_headers("data_export.csv");
echo array2csv($data, $titles);
die();
Быстрый ответ:

 Графические смайлики |  Показывать подпись
Здесь расположена полная версия этой страницы.
Invision Power Board © 2001-2024 Invision Power Services, Inc.