Рекурсивный акроним словосочетания «PHP: Hypertext Preprocessor»
Добро пожаловать на форум PHP программистов!
За последние 24 часа нас посетили 17244 программиста и 1834 робота. Сейчас ищут 1692 программиста ...
Spreadsheet_Excel_Writer::send
Вернуться к: Spreadsheet_Excel_Writer
Spreadsheet_Excel_Writer::send
Spreadsheet_Excel_Writer::send – Send HTTP headers for the Excel file.
Synopsis
require_once "Spreadsheet/Excel/Writer.php";
void Spreadsheet_Excel_Writer::send ( string $filename )
Send HTTP headers with the correct content-type (application/vnd.ms-excel), cache control and filename for the file.
Parameter
-
string $filename - The filename to use for HTTP headers
Note
This function can be called statically, but it is easiest when called from the workbook object.
Example
Using send()
<?php
$workbook->send('filename.xls');
?>
Вернуться к: Spreadsheet_Excel_Writer