2016-12-05 18:34:00 -03:00

8 lines
143 B
PHP

<?php
require("../src/Toml.php");
$toml = Toml::parseFile('example.toml');
if(count($argv) > 1 && $argv[1] == 'dump') {
print_r($toml);
}