php-输出CSV文件


<?php
/*
 * Created on 2013-1-31
 *
 * To change the template for this generated file go to
 * Window - Preferences - PHPeclipse - PHP - Code Templates
 */
header("Content-Type: application/vnd.ms-excel; charset=GB18030");   
header("Pragma: public");
header("Expires: 0");   
header("Cache-Control: must-revalidate, post-check=0, pre-check=0");   
header("Content-Type: application/force-download");   
header("Content-Type: application/octet-stream");   
header("Content-Type: application/download");   
header("Content-Disposition: attachment;filename=数据.csv ");   
header("Content-Transfer-Encoding: binary ");
$html = iconv("utf-8","gb18030",$html);
echo $html;
?>

你可能感兴趣的:(php-输出CSV文件)