PHP code example of leonelquinteros / php-toml

1. Go to this page and download the library: Download leonelquinteros/php-toml library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

leonelquinteros / php-toml example snippets



namespace My\Own




 My_Own_Toml extends Toml {}



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


// Parse TOML file path
$result = Toml::parseFile('example.toml');
bash
toml-test /path/to/github/cloned/repo/php-toml/toml-test/test.php