将数据写入保存的excel而不影响格式

时间:2014-01-24 07:58:50

标签: php excel fopen fwrite

我已经在我的服务器上保存了excel表,它有一种格式我试图将数据写入保存的excel但是当我尝试写它删除excel格式(即它删除标题颜色的所有内容)时,它在第一个写入起始数据单元格,我想将数据写入保存的excel而不从单元格10更改excel格式开始,下面是我执行该函数之前我的excel的样子。 看看它是什么样的。

之前:

enter image description here

enter image description here

mycode的

<?php


$File = "Book1.xls";   

 $Handle = fopen($File, 'w');
 $Data = "Abdul Rahim\n"; 
 fwrite($Handle, $Data); 
 $Data = "Raja\n"; 
 fwrite($Handle, $Data); 
 print "Data Written"; 
 fclose($Handle); 

?>

任何人都可以帮我解决这个问题。

1 个答案:

答案 0 :(得分:1)

您无法仅使用fwrite修改XLS。它有严格的格式。

您可以切换为CSV或使用PhpExcel等第三方库。