0
        $column = str_replace(',',' ', $rows[address]);
        $column = addslashes($column);
        $column = str_replace("\n", " ",$column);
        $contents.= $column."\t";

        $contents.="\n";
    }
header("Content-type: application/ms-excel");
header("Content-Disposition: attachment; filename=Confirmed.xls");
print $contents;

如何在不替换“/n”的情况下放置地址字段,因为它是一个地址字段,我想以一种好的方式在单元格中显示它......替换“返回”使我的地址成为单行。

4

1 回答 1

-1

创建电子表格可能会遇到许多问题,当我遇到此类问题时,我最终将地址字段拆分为多个列。我很久以前写了一篇关于这个的文章希望这对http://www.anchorx.com/ali/2011/02/27/create-spreadsheet-with-php/有帮助

于 2013-02-05T16:32:27.890 回答