Home > Backend Development > PHP Tutorial > excel导出,怎么设置单元格式

excel导出,怎么设置单元格式

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
Release: 2016-06-06 20:50:56
Original
1145 people have browsed it

我使用的是最原始的输出\t \n 的方式
现在遇到超过16位的数字,这样就变成了科学计数的方式
不能使用table和PHPExcel的方式
有什么好的办法能够把数字转成字符串
前后加空格的方式都测试过了,不行

回复内容:

我使用的是最原始的输出\t \n 的方式
现在遇到超过16位的数字,这样就变成了科学计数的方式
不能使用table和PHPExcel的方式
有什么好的办法能够把数字转成字符串
前后加空格的方式都测试过了,不行

"=\"{$column}\""这样就行了

if(is_numeric($column)) {
    $column = "=\"{$column}\"";
}
Copy after login

数字:vnd.ms-excel.numberformat:#,##0.00
遇见过,看这里http://www.blogjava.net/Hopes/article...

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Issues
php data acquisition?
From 1970-01-01 08:00:00
0
0
0
PHP extension intl
From 1970-01-01 08:00:00
0
0
0
How to learn php well
From 1970-01-01 08:00:00
0
0
0
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template