How can i write data into an excel using PHP

前端 未结 6 528
南方客
南方客 2020-11-27 20:23

Is it possible to append content to an .xls file using PHP fwrite()?

When i try this using fwrite(), the resulting file causes an error message in Excel 2007.

<
6条回答
  •  误落风尘
    2020-11-27 21:02

    You can try and create a CSV file, like this:

    name;surname;blabla
    name;surname;blabla
    name;surname;blabla
    name;surname;blabla
    

    Excel should eat this :)

    It is convenient to use PHP CVS functions: http://php.net/manual/en/function.fputcsv.php

提交回复
热议问题