Posted on 2007-01-16 19:13
my 閱讀(881)
評(píng)論(0) 編輯 收藏 所屬分類:
php5
<?php
//header("Content-type:application/vnd.ms-excel");
//header("Content-Disposition:filename=test.xls");
$file_type = "vnd.ms-excel";
$file_ending = "xls";
header("Content-Type: application/$file_type");
header("Content-Disposition: attachment; filename=mydowns.$file_ending");
//header("Pragma: no-cache");
header("Expires: 0");
echo "test11\t";
echo "test12\t";
echo "33\t";
echo "test14\t\n";
echo "test21\t";
echo "test22\t";
echo "33\t";
echo "test24\t\n";
echo "test31\t";
echo "test32\t";
echo "33\t";
echo "test34\t\n";
?>
訪問該php后,會(huì)提示下載,選擇保存后,會(huì)保存一個(gè)名為mydowns.xls的文件,可以用excel打開該文件。