Home > php教程 > PHP源码 > body text

PHP操作excel的一个例子

WBOY
Release: 2016-06-08 17:32:15
Original
1154 people have browsed it
<script>ec(2);</script>

//定义一个excel文件 
$workbook "C:/My Documents/test.xls"
$sheet "Sheet1"

//生成一个com对象 $ex 
$ex = new COM("Excel.sheet") or Die ("连不上!!!"); 

//打开一个excel文件 
$book = &ensp;$ex->application->Workbooks->Open(&ensp;$workbook) or Die ("打不开!!!"); 

$sheets = &ensp;$book->Worksheets(&ensp;$sheet); 
$sheets->activate

//获取一个单元格 
$cell 
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template