PHP-在Excel中的括号中显示一个值

时间:2018-10-31 11:03:09

标签: php excel

我正在将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

1 个答案:

答案 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>并为我工作