繁体中文
设为首页
加入收藏
当前位置:网络编程首页 >> php >> PHP导出csv excel 格式的文件

PHP导出csv excel 格式的文件

2008-03-19 15:03:49  作者:  来源:互联网  浏览次数:76  文字大小:【】【】【
简介:CVS的例子 <?header("Content-type:application/vnd.ms-excel");header("Content-Disposition:filename=test.csv");echo "test1,";echo "test2,";echo "test1,";echo "test2,";echo "test1,";ec ...

CVS的例子

<?
header("Content-type:application/vnd.ms-excel"
);
header("Content-Disposition:filename=test.csv"
);
echo
"test1,"
;
echo
"test2,"
;
echo
"test1,"
;
echo
"test2,"
;
echo
"test1,"
;
echo
"test2,"
;
echo
"test1,"
;
echo
"test2,"
;
echo
"test1,"
;
echo
"test2,"
;
echo
"test1,"
;
echo
"test2\t\n"
;
?>

EXCEL的例子

<?
header
("Content-type:application/vnd.ms-excel"
);
header("Content-Disposition:filename=test.xls"
);
echo
"test1\t"
;
echo
"test2\t\n"
;
echo
"test1\t"
;
echo
"test2\t\n"
;
echo
"test1\t"
;
echo
"test2\t\n"
;
echo
"test1\t"
;
echo
"test2\t\n"
;
echo
"test1\t"
;
echo
"test2\t\n"
;
echo
"test1\t"
;
echo
"test2\t\n"
;
?>

责任编辑:探索者


相关文章
 

最新文章

更多

· php教程:mysql的常用语句
· PHP教程:cookie和数组的...
· PHP创建windows服务并自...
· PHP技巧教程:setcookie...
· 可以在读者复制网页内容...
· 高亮显示php代码
· PHP加速器 eaccelerator...
· ffmpeg+mencoder环境搭建...
· ffmpeg的编译大全
· Ffmpeg使用语法

推荐文章

更多

· php教程:mysql的常用语句
· PHP教程:cookie和数组的...
· PHP创建windows服务并自...
· PHP技巧教程:setcookie...
· 可以在读者复制网页内容...
· 高亮显示php代码
· PHP加速器 eaccelerator...
· ffmpeg+mencoder环境搭建...
· ffmpeg的编译大全
· Ffmpeg使用语法

热点文章

更多