用php 生成Excel file. 我在代码开始加入了<?php
header("content-type: application/vnd.ms-excel");
header("Expires: 0");
header("Cache-Control: must-revalidate, post-check=0, pre-check=0");
?> 然后在机子上打开后有两种情况:(服务器装的是Excel 2007版;  我自己的机子上装的是Excel 2003版)在做为服务器的那台机子上可以打开,但是有一个warning: "The file your are trying to open,'excel.xls', is in a different format than specified by the file extension, Verify that the file is not corrupted and is from a trusted source before opening the file. Do you want to open the file now?"在我的机子上打开就变成了excel.php格式的,以写字板的形式出现,到底是什么问题啊