php-toml/README.md
Leonel Quinteros 36071214c9 Fixed Readme
2013-02-24 13:21:16 -03:00

378 B

PHP TOML parser

PHP parser for TOML language.

Status

Work in progress. Arrays are not supported.

TODO

  • Support arrays

Usage

<?php
require("../src/toml.php");

// Parse TOML string
$tomlStr = file_get_contents('example.toml');
$result = Toml::parse($tomlStr);


// Parse TOML file path
$result = Toml::parseFile('example.toml');