将PHP输出导出到Microsoft Excel

时间:2013-10-19 08:45:30

标签: php excel transfer

我正在尝试转换PHP页面中名为“Update2”的表的内容。

这是转换器:

header("Content-type: application");
header("Content-Disposition: attachment; filename=myfilename.xls");

这是代码分数:

<?php
$output_sql="select * from update2 where update_com_ag=1 order by update_fullname ASC";
$output_query=mysql_query($output_sql,$con);
while($output=mysql_fetch_array($output_query)){?>
<tr>
    <td valign="top"><?php echo strtoupper($output['telephone_number']);?></td>
</tr>
<?php }?>

但是,假设电话号码是1601000021056,excel文件中的输出将是1.601E + 12。有什么解决方案可以解决这个问题吗?我尝试了几种方法,但仍然无法正常工作。

谢谢你们!

3 个答案:

答案 0 :(得分:0)

转到Excel,突出显示电话号码列。右键单击并转到格式化单元格。转到“数字”选项卡。然后在左侧,您可以选择不同的格式。像带有0位小数的数字可能会这样做。

答案 1 :(得分:0)

由于空间限制,Excel程序以该格式显示。增加列宽,它将正确显示数字。

答案 2 :(得分:0)

在excel中,如果使用单引号添加一个值,它会将该值视为字符串,即使它是一个数字。不确定它是否适用于您的导出方法,但值得一试。

<tr>
    <td valign="top">'<?php echo strtoupper($output['telephone_number']);?></td>
</tr>