联系电话:0411-66373325
联系地址:大连市沙河口区富民广场
公司邮箱:2058793689@qq.com
备案信息:Copyright © 2016-2025,www.my249.com,All rights reserved
|
php生成excel的方法数据导出是大家经常用到的功能,今天给大家开源一个 php生成excel的方法 如果是utf-8编码生成的excel有可能是乱码 <?php header("Content-type:application/vnd.ms-excel"); header("Content-Disposition:attachment;filename=test_data.xls"); $tx="表头"; echo $tx."\n\n"; //输出内容如下: echo "姓名"."\t"; echo "年龄"."\t"; echo "学历"."\t"; echo "\n"; echo "张三"."\t"; echo "25"."\t"; echo "本科"."\t"; ?> 249小伙伴们的外号叫雷锋! |