icewind/demoparser

HL2 演示文件的解析器

0.1 2014-10-24 16:47 UTC

This package is auto-updated.

Last update: 2024-09-18 17:48:31 UTC


README

Build Status

HL2 演示文件的解析器

使用说明

$parser = new Icewind\DemoParser\Parser();
$info = $parser->parseFile('my_demo_file.dem');

echo 'Player: ' . $info->getNick() . "\n";
echo 'Map: ' . $info->getMap() . "\n";
echo 'Duration: ' . floor($info->getDuration()) . " seconds \n";