zedling/php-parse-kv

该软件包最新版本(2.1.2)没有可用的许可证信息。

2.1.2 2018-01-24 10:54 UTC

This package is not auto-updated.

Last update: 2024-09-15 04:42:05 UTC


README

基于我再也找不到的 Reddit 帖子

安装: composer require zedling/php-parse-kv

使用方法

<?php

use Zedling\DotaKV\Parser;

$parser = new Parser();

$array = $parser->load(files_get_contents("link_to_file"));

print_r($array);

变更

  • 2.1.1: 如果值通过 ; 分隔,则作为数组解析
  • 2.1: 如果值通过空格分隔,则作为数组解析
  • 2.0: 实现切换到使用 token_get_all