php生成EXCEL的东东
2015-01-24信息快讯网
----------------------------
Excel Functions
----------------------------
将下面的代码存为excel.php ,然后在页面中包括进来
然后调用
1. Call xlsBOF()
2. 将一些内容写入到xlswritenunber() 或者 xlswritelabel()中.
3.然后调用 Call xlsEOF()
也可以用 fwrite 函数直接写到服务器上,而不是用echo 仅仅在浏览器上显示。
<?php
// ----- begin of function library -----
// Excel begin of file header
function xlsBOF() {
echo pack("ssssss", 0x809, 0x8, 0x0, 0x10, 0x0, 0x0);
return;
}
// Excel end of file footer
function xlsEOF() {
echo pack("ss", 0x0A, 0x00);
return;
}
// Function to write a Number (double) into Row, Col
function xlsWriteNumber($Row, $Col, $Value) {
echo pack("sssss", 0x203, 14, $Row, $Col, 0x0);
echo pack("d", $Value);
return;
}
// Function to write a label (text) into Row, Col
function xlsWriteLabel($Row, $Col, $Value ) {
$L = strlen($Value);
echo pack("ssssss", 0x204, 8 + $L, $Row, $Col, 0x0, $L);
echo $Value;
return;
}
// ----- end of function library -----
?>
//
// To display the contents directly in a MIME compatible browser
// add the following lines on TOP of your PHP file:
<?php
header ("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
header ("Last-Modified: " . gmdate("D,d M YH:i:s") . " GMT");
header ("Cache-Control: no-cache, must-revalidate");
header ("Pragma: no-cache");
header ('Content-type: application/x-msexcel');
header ("Content-Disposition: attachment; filename=EmplList.xls" );
header ("Content-Description: PHP/INTERBASE Generated Data" );
//
// the next lines demonstrate the generation of the Excel stream
//
xlsBOF(); // begin Excel stream
xlsWriteLabel(0,0,"This is a label"); // write a label in A1, use for dates too
xlsWriteNumber(0,1,9999); // write a number B1
xlsEOF(); // close the stream
?>
PHP通用分页类page.php[仿google分页]
php将数据库中的电话号码读取出来并生成图片
PHP生成HTML静态页面实例代码
php array_slice函数的使用以及参数详解
PHP中常用数组处理方法实例分析
PHP Smarty生成EXCEL文档的代码
php-accelerator网站加速PHP缓冲的方法
Excel数据导入Mysql数据库的实现代码
PHP中的extract的作用分析
php Undefined index和Undefined variable的解决方法
asp和php下textarea提交大量数据发生丢失的解决方法
使用 eAccelerator加速PHP代码的方法
实现php加速的eAccelerator dll支持文件打包下载
excellent!――ASCII Art(由目标图象生成ascii)
用PHP和ACCESS写聊天室(十)
一个取得文件扩展名的函数
PHP 如何向 MySQL 发送数据
PHP安装攻略:常见问题解答(一)
利用PHP实现与ASP Banner组件相似的类
PHP聊天室技术
在windows iis5下安装php4.0+mysql之我见
二十行语句实现从Excel到mysql的转化
利用 window_onload 实现select默认选择
php,不用COM,生成excel文件
如何把PHP转成EXE文件
将PHP作为Shell脚本语言使用
优化NFR之一 --MSSQL Hello Buffer Overflow
example2.php
example1.php