cyrill/php-ltsv

LTSV(Labeled Tab Separated Value) parser implementation in PHP

dev-master 2013-06-03 10:00 UTC

This package is not auto-updated.

Last update: 2024-04-22 12:18:57 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);