zedling / php-parse-kv
There is no license information available for the latest version (2.1.2) of this package.
2.1.2
2018-01-24 10:54 UTC
This package is not auto-updated.
Last update: 2025-03-02 07:34:27 UTC
README
Based on a reddit post I Can't find anymore
Install:
composer require zedling/php-parse-kv
Usage:
<?php
use Zedling\DotaKV\Parser;
$parser = new Parser();
$array = $parser->load(files_get_contents("link_to_file"));
print_r($array);
Changes:
- 2.1.1: added parsing values as array if they are
;
separated - 2.1: added parsing values as array if they are space separated
- 2.0: switched implememntation to use
token_get_all