cyrill / php-ltsv
LTSV(Labeled Tab Separated Value) parser implementation in PHP
Installs: 7 008
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 0
Requires (Dev)
- phpunit/phpunit: >=3.7.0
This package is not auto-updated.
Last update: 2025-01-13 15:36:13 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);