我有一个 mysql 表,在其中存储用户的手机号码,现在我只想使用 php 将这些号码导出到 .csv 文件,并且我不想在每个号码的末尾使用逗号。现在假设我的表中存储了接下来的 3 个数字:
123456789
+966123456789
00966123456789
现在,如果我使用下一个代码:
$result = mysql_query("SELECT cellphone FROM user");
if ($result) {
while ($row = mysql_fetch_array($result)) {
$cellphones .= $row["cellphone"] . ",\r\n"; //note the comma here
}
}
$filename = "cellphones_" . date("Y-m-d_H-i");
header("Content-type: application/vnd.ms-excel");
header("Content-disposition: csv" . date("Y-m-d") . ".csv");
header("Content-disposition: filename=" . $filename . ".csv");
print $cellphones;
exit;
我将得到一个 .csv 文件,其中包含如下数字:
+966123456789,
00966123456789,
123456789,
但是,如果我使用相同的代码而没有像这样的逗号:
$cellphones .= $row["cellphone"] . "\r\n";
代替:
$cellphones .= $row["cellphone"] . ",\r\n"; //note the comma here
那么 .csv 文件中的数字将是:
9.66123E+11
9.66123E+11
123456789
那么出了什么问题,如何在没有逗号的情况下正确显示数字?