使用 php 生成 Excel,将单元格格式设置为字符串数字等
我正在使用 php 生成一个 excel 文件。
无论带有前导零的字符串(例如 0234)如何转换为 234,都会创建该文件。
I am generating an excel file using php.
The file gets created how ever strings with leading zeros example 0234 get converted to 234.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您想要将数字格式设置为文本
“@”
是文本格式的值。
应该显示前导 0。
我希望这有帮助;)
you want to set the number format to text
"@"
is the value for Text Format.
That should display leading 0's.
I hope that helps ;)