码迷,mamicode.com
首页 > Web开发 > 详细

PHP 导入EXCEL文件

时间:2014-07-24 21:21:23      阅读:161      评论:0      收藏:0      [点我收藏+]

标签:os   文件   io   for   re   c   html   ar   

$filename = ‘hehe.xls‘;
header (‘Content-type: text/html; charset=UTF-8‘);
header ( "Content-type:application/vnd.ms-excel; charset=UTF-8");
header ( "Content-Type: application/download" );
header ( "Content-Disposition:filename=$filename" );

echo "一\t";
echo "\n";

$result[‘province‘] = ‘嘿嘿1‘;
$result[‘city‘] = ‘嘿嘿2‘;
$result[‘postcode‘] = ‘嘿嘿3‘;

foreach($result as $k=>$v){
    echo "$v\t\n";
}

PHP 导入EXCEL文件,布布扣,bubuko.com

PHP 导入EXCEL文件

标签:os   文件   io   for   re   c   html   ar   

原文地址:http://www.cnblogs.com/tlijian/p/3865797.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!