时间:2021-07-01 10:21:17 帮助过:23人阅读
//适用于不需要设置格式简单将数据导出的程序,多多指教...... $str .= 'pro_code'.','.'words'.'\n';//首先写入表格标题栏 foreach($is_error as $key => $value){//循环写入数据 $str .= $value['pro_code'].",".$value['words']."\n"; } $str = iconv('utf-8','gb2312',$str);//防止中文乱码 $filename = "./output.csv";//文件路径及名字 export_csv($filename,$str); //导出 //自定义输出函数 function export_csv($filename,$str){ header("Content-type:text/csv"); header("Content-Disposition:attachment;filename=".$filename); header('Cache-Control:must-revalidate,post-check=0,pre-check=0'); header('Expires:0'); header('Pragma:public'); echo $str; }
相关推荐:
log4Net 高性能写入和CSV格式的实例详解
完美解决php 导出excle的.csv格式的数据时乱码问题
HTML表格的每行转为CSV格式数组
以上就是几行php代码实现CSV格式文件输出案例的详细内容,更多请关注Gxl网其它相关文章!