clover/text-ltsv

Labeled Tab-separated Values (LTSV; cf. http://ltsv.org/) parser for PHP.

1.0.0 2013-02-23 16:37 UTC

This package is not auto-updated.

Last update: 2024-03-27 08:51:11 UTC


README

Build Status

Labeled Tab-separated Values (LTSV; cf. http://ltsv.org/) parser for PHP.

Install

Using Composer as a dependency management tool, you can bring Clover\Text\LTSV in your environment easily with settings below.

{
  "require": {
    "clover/text-ltsv": "~1.0"
  }
}

Usage

<?php
$ltsv = new Clover\Text\LTSV();

$values = $ltsv->parseLine("hoge:foo\tbar:baz");

$values = $ltsv->parseFile('log.ltsv');

$it = $ltsv->getIteratorFromFile('log.ltsv');
foreach ($it as $values) {
    // do something
}

$ltsv->add('hoge', 'foo')->add('bar', 'baz');
$line = $ltsv->toLine();

License

Free to use under the terms of the New BSD License.