phpExcel在单元格中写入长数字
虽然编写 Excel 文件没问题,但我发现很长的数字是 Excel 中的公式
示例:8.71129E+12
而不是:1234567890
如何在 PHP Excel 创建过程中更改格式?
我正在遵循这里的简单示例
While writing the excel file is fine I see that really long numbers are formulas in excel
Example: 8.71129E+12
instead of: 1234567890
How can I change the format during the PHP Excel Creation?
I'm following the simple example here
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
将值显式设置为字符串,或者为单元格设置数字格式掩码,强制显示所有数字(例如“#,##0”0r“0”)而不是默认格式。
Either set the value explicitly as a string, or set a number format mask for the cell that forces display of all digits (e.g. '#,##0' 0r '0') rather than default format.
试试这个代码,它对我有用:
祝你好运!
Try this code it's works for me :
And Good luck !