jonnyynnoj/haxball-replay-parser

解析 haxball 重放文件 (.hbr)

1.0.3 2017-03-26 16:41 UTC

This package is auto-updated.

Last update: 2024-08-29 03:26:18 UTC


README

解析 haxball 重放文件

composer require jonnyynnoj/haxball-replay-parser

使用方法

$file = fopen('path\to\replay.hbr', 'r');
// OR
$file = file_get_contents('path\to\replay.hbr');

$parser = new ReplayParser\Parser($file);
$replay = $parser->parse();

输出为 JSON 格式

echo json_encode($replay);