我正在将HTML转换为excel文件。
<?php
header("Content-type: application/vnd.ms-excel; name='excel'");
header("Content-Disposition: attachment; filename=test.xls");
?>
<tr><td>(8.47%)</td></tr>
我要在Excel中显示(8.47%),但是当我打开Excel文件时,它会自动转换并显示为 -8.47 。
我希望我的值显示为(8.47%),而不是 -8.47 。
答案 0 :(得分:0)
报价有效吗?就像您在excel中一样。
<tr><td>('8.47%)</td></tr>
编辑:
<?php
header("Content-type: application/vnd.ms-excel; name='excel'");
header("Content-Disposition: attachment; filename=test.xls");
?>
<table>
<tr><td>(8.47%)</td></tr>
</table>
我只是添加<table></table>
并为我工作