cyrill/php-ltsv

LTSV(Labeled Tab Separated Value) parser implementation in PHP

Installs: 7 008

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/cyrill/php-ltsv

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

This package is not auto-updated.

Last update: 2025-10-06 19:18:04 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);