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

yipeiwu_com5年前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描述) 快速排序 quick sort

复制代码 代码如下: <?php /** * 快速排序 quick sort * **/ function sort_quick($arrData) { if(empty($arr...

PHP生成RSS文件类实例

本文实例讲述了PHP生成RSS文件类文件。分享给大家供大家参考。具体如下: PHP RSS 生成类实例代码如下: 复制代码 代码如下:<?php if (defined(...

php中调用其他系统http接口的方法说明

使用函数:  file_get_contents($url); 传入接口url及其参数:如 $url="http://192.168.1.1/test.jsp?id=1&typ...

php数组键值用法实例分析

本文实例讲述了php数组键值用法。分享给大家供大家参考。具体分析如下: 先看一个数组: <?php $switching = array( 10, // key =...

PHP与C#分别格式化文件大小的代码

PHP 版: 复制代码 代码如下: function format($size) { $sizetext = array(" B", " KB", " MB", " GB", " TB"...