rovangju/commie 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

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

rovangju/commie

Composer 安装命令:

composer require rovangju/commie

包简介

A simplistic OO wrapper around PHP's built in CSV handling that lets you reference columns by header name

README 文档

README

Introduction

Commie is a simplistic object-orientated wrapper around PHP's built in CSV handling.

The key difference with Commie is that it's the first library that will allow you to traverse the file's columns by name - as well as painlessly jump around the file in an efficient manner.

There's a few antique packages out in the wild that handle CSV files, however all of them seem to be lacking in one way or another, and don't lend themselves well to customization for the wild formats delimited data can come in. Commie implements a 'mapper' concept that allows you to do whatever strange things you need in addition to the core for traversal of your data.

Quick start

<?php

require_once 'Commie/_config.php';
/* ^-- Not needed if you use a PSR-0 autoloader, just register it normally */

use Commie\CSVFile;

$file = new SplFileObject('./file.csv');
$csv = new CSVFile($file, TRUE);

while (($row = $csv->read())) {
    echo $row->col('My Heading')->value();
}

echo $csv->row(10)->col('TOTAL')->value();

Further details

You can examine the source, or you can generate the documentation using apigen (Once apigen 3.00 is released the docs will be committed as markdown for github)

统计信息

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

GitHub 信息

  • Stars: 0
  • Watchers: 1
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: BSD-3-Clause
  • 更新时间: 2013-04-19

承接程序开发

PHP开发

VUE

Vue开发

前端开发

小程序开发

公众号开发

系统定制

数据库设计

云部署

网站建设

安全加固