两个开源的Php输出Excel文件类

yipeiwu_com4年前PHP代码库

1.php-excel

php-excel is a very simple library for generating excel documents from php on-the-fly.

http://code.google.com/p/php-excel/
【宜配屋www.yipeiwu.com】下载
https://www.jb51.net/codes/24319.html
2.PHPExcel

Project providing a set of classes for the PHP programming language, which allow you to write to and read from different file formats, like Excel 2007, PDF, HTML, ... This project is built around Microsoft's OpenXML standard and PHP.

http://www.codeplex.com/PHPExcel/ 

【宜配屋www.yipeiwu.com】下载
https://www.jb51.net/codes/24320.html

相关文章

php带抄送和密件抄送的邮件发送方法

本文实例讲述了php带抄送和密件抄送的邮件发送方法。分享给大家供大家参考。具体分析如下: 程序中用到了php的mail函数,该函数定义如下: bool mail ( string $t...

php 无限级分类,超级简单的无限级分类,支持输出树状图

无平台限制 只需要告知id,parentid,name 即可 <?php error_reporting(E_ALL ^ E_NOTICE); class Tree...

简单的PHP多图上传小程序代码

先上源代码,你可以copy到自己的电脑上去运行~ 复制代码 代码如下: <html> <meta http-equiv="Content-Type" content="...

php设计模式 Observer(观察者模式)

复制代码 代码如下: <?php /** * 观察者模式 * * 定义对象间的一种一对多的依赖关系,以便当一个对象的状态发生改变时,所有依赖于它的对象都得到通知并自动刷新 * 能够...

php使用curl通过代理获取数据的实现方法

本文实例讲述了php使用curl通过代理获取数据的实现方法。分享给大家供大家参考,具体如下: $curl=curl_init(); curl_setopt($curl, CURLOP...