首页 > 办公 > Excel > 正文

做Excel数据简单的范例

2024-08-23 19:59:22
字体:
来源:转载
供稿:网友
注册会员,创建你的web开发资料库,一个打开excel ap制作excel数据的简单范例。

 
<?
$excel = new com("excel.application") or die("unable to instanciate excel"
);

$excel->visible 0
;

$book=$excel->workbooks->add
;
$book->title="excel范例"
;
$book->subject="这是excel范例程序制作的excel档"
;

$sheet=$book->worksheets("sheet1"
);
$range=$sheet->range("a1:c10"
);
for(
$i=1;$i<=10;$i
++):
    for(
$j=1;$j<=3;$j
++):
       
$cell=$range->cells($j,$i
);
       
$cell->value=chr($i+64).$j
## 塞入a1:c10的值
    
endfor;
endfor;

$book->saveas("c:/excel.xls");      
## 存档

$excel->quit
();
$excel->release
();
$excel null
;

?>
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表