承接 laacz/xls-parser 相关项目开发

从需求分析到上线部署,全程专人跟进,保证项目质量与交付效率

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

laacz/xls-parser

最新稳定版本:0.3

Composer 安装命令:

composer require laacz/xls-parser

包简介

Library to parse XLS files

关键字:

README 文档

README

XLSParser is reasonably fast PHP library intended to parse Microsoft Excel legacy binary XLS formats. It was written because all PHP implementations where too slow. Code is more or less direct port of python's excellent xlrd package. Library is very early alpha. I made it a long time ago.

Feedback

Issues and pull requests are accepted.

Requirements

  • PHP 5.4.0 or newer.
  • Multibyte string extension (mbstring) to handle UTF-16LE encoding, used in newer Excel files.
  • Little endian system because of PHP's unpack/pack. If you're not on Sparc, you should be covered.

Install

Via command line: composer require laacz/xls-parser.

Tests

Install dependencies with composer install --dev, then run tests with vendor/bin/phpunit.

Usage

KISS. Provide filename and it gets loaded or parsed.

$book = new laacz\XLSParser\Book(file_get_contents('workbook.xls'));

Accessing sheets

Sheets can be accessed via their numeric index or name. Since Sheet object implements ArrayAccess and IteratorAggregate, you can do that too.

$sheet = $book[0]; $sheet = $book['Page1']; $sheet = $book['Vājprāts'];

Accessing cells

Cells also can be accessed as with sheets. Index starts from zero.

$row = $sheet[0]; $cell = $sheet[$sheet->nrows - 1][1];

To get value of a cell, cast it to string (or use it in such context) or get value attribute:

$val1 = $cell->value; $val2 = (string)$cell;

Or, if you wish...

$val1 = $book[0][0][0]->value;

Formatting

By now formatting can be accessed raw. In short - sheet contains mapping array rich_text_runlist_map[][], which has arrays with two elements - position and font reference. First is position where style is being applied from, second is number which refers to book's font_list[], which on its part contains format description.

Excel dates

Library does its best to parse dates found within cells. It returns string in common date format: 'yyyy-mm-dd hh:mi:ss'. For example: 2014-12-31 12:59:59.

Wishlist

  • Memory efficiency does not exist in context of this library.
  • Performance might be better.
  • Abstract formatting.
  • Add helper methods for common tasks - returning columns, ranges, etc.

laacz/xls-parser 适用场景与选型建议

laacz/xls-parser 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 45.64k 次下载、GitHub Stars 达 9, 最近一次更新时间为 2026 年 01 月 04 日, 在 PHP 生态内属于活跃度较高的组件。

它主要适用于以下技术方向: 「xls」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。

我们在过去多个企业项目中使用过 laacz/xls-parser 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。

围绕 laacz/xls-parser 我们能提供哪些服务?
定制开发 / 二次开发

基于 laacz/xls-parser 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。

BUG 修复 & 性能优化

线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。

项目外包 & 长期维护

承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。

yvsm@zunyunkeji.com QQ:316430983 微信:yvsm316 西安尊云信息科技 · 专注 PHP / Go / 分布式系统研发

统计信息

  • 总下载量: 45.64k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 9
  • 点击次数: 19
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 9
  • Watchers: 5
  • Forks: 2
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2026-01-04