mirror of
https://github.com/leonelquinteros/php-toml.git
synced 2025-01-29 09:47:39 +01:00
378 B
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');