美文网首页
导出table格式的导出字符串前面带0的解决方法

导出table格式的导出字符串前面带0的解决方法

作者: define光年 | 来源:发表于2020-04-11 14:47 被阅读0次

<td style='mso-number-format:"@"'><?php echo $row1['order_batch']?></td>
前面加个style就可以 下面是常见的4种字符串表达形式
文本mso-number-format:@
数字 mso-number-format:"0.0"
日期 mso-number-format:"mm/dd/yy"
百分比mso-number-format:Percent

这种导出是输出一下头部文件
header("Content-type:text/xls");
header("Content-Disposition:attachment;filename=".$name);
header('Cache-Control:must-revalidate,post-check=0,pre-check=0');
header('Expires:0');
header('Pragma:public');

然后把数据渲染到界面上
<table width="3000" border="1">
<tr><th></th></tr>头部信息
<tr><td></td></tr>循环数据
</table>
即可完成数据的简单导出工作

相关文章

网友评论

      本文标题:导出table格式的导出字符串前面带0的解决方法

      本文链接:https://www.haomeiwen.com/subject/zbbymhtx.html