php-toml/README.md

32 lines
378 B
Markdown
Raw Normal View History

2013-02-24 13:16:23 -03:00
PHP TOML parser
===============
2013-02-24 06:53:32 -08:00
2013-02-24 13:16:23 -03:00
PHP parser for TOML language.
Status
------
Work in progress.
Arrays are not supported.
TODO
----
- Support arrays
Usage
-----
2013-02-24 13:21:16 -03:00
```
2013-02-24 13:16:23 -03:00
<?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');
2013-02-24 13:21:16 -03:00
```