cyrill / php-ltsv
LTSV(Labeled Tab Separated Value) parser implementation in PHP
dev-master
2013-06-03 10:00 UTC
Requires (Dev)
- phpunit/phpunit: >=3.7.0
This package is not auto-updated.
Last update: 2026-03-09 21:16:47 UTC
README
Labelled Tab-Separated Values(LTSV) parser / dumper
Read more http://ltsv.org/
Requirements
PHP 5.3+
Installation
git clone git://github.com/t-cyrill/php-ltsv.git
Usage
<?php require 'autoload.php'; $hash = array('foo' => 'bar'); $ltsv = Ltsv::encode($hash); Ltsv::decode($ltsv);