mirror of
https://github.com/leonelquinteros/php-toml.git
synced 2025-01-17 12:28:16 +01:00
8 lines
143 B
PHP
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);
|
|
} |