cyrill/php-ltsv

LTSV(Labeled Tab Separated Value) parser implementation in PHP

Maintainers

Package info

github.com/t-cyrill/php-ltsv

pkg:composer/cyrill/php-ltsv

Statistics

Installs: 7 008

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

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

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);