把以下代码放到php文件顶部,当前html页面大部分效果就会以excel的格式被保存下来,所见即所存,当然是大部分效果。
以下是PHP源码: header("Pragma: public"); header("Pragma: no-cache"); header("Expires: 0"); header("Cache-Control: must-revalidate, post-check=0, pre-check=0"); header("Content-Type: application/vnd.ms-excel"); header("Content-Disposition: attachment; filename=mydowns.xls"); |