clover / text-ltsv
This package is abandoned and no longer maintained.
No replacement package was suggested.
Labeled Tab-separated Values (LTSV; cf. http://ltsv.org/) parser for PHP.
1.0.0
2013-02-23 16:37 UTC
Requires
- php: >=5.3.3
Requires (Dev)
- phpunit/phpunit: 3.7.*
This package is not auto-updated.
Last update: 2026-01-28 17:21:50 UTC
README
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.