cyrill/php-ltsv

PHP 中 LTSV(标签分隔值)解析器实现

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

This package is not auto-updated.

Last update: 2024-09-23 14:08:17 UTC


README

标签分隔值(LTSV)解析器/转储器

阅读更多 http://ltsv.org/

要求

PHP 5.3+

安装

git clone git://github.com/t-cyrill/php-ltsv.git

使用

<?php
require 'autoload.php';

$hash = array('foo' => 'bar');
$ltsv = Ltsv::encode($hash);
Ltsv::decode($ltsv);