Download the PHP package rogiel/mpq without Composer
On this page you can find all versions of the php package rogiel/mpq. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Vendor rogiel
Package mpq
Short Description A MPQ reader in PHP
License BSD-2.0
Homepage https://github.com/rogiel/php-mpq
Package mpq
Short Description A MPQ reader in PHP
License BSD-2.0
Homepage https://github.com/rogiel/php-mpq
Keywords file managementMPQ
Please rate this library. Is it a good library?
Informations about the package mpq
A PHP library for MPQ reading
This library allows you to read MPQ files from PHP.
Installation
The recommended way of installing this library is using Composer.
composer require "rogiel/mpq"
Example
use Rogiel\MPQ\MPQFile;
$file = MPQFile::parseFile(__DIR__.'/test.SC2Replay');
$file->parse();
$stream = $file->openStream('replay.details');
while($data = $stream->readBytes(100)) {
echo $data;
}
TODO
- Encrypted files (parcial support)
- File writing
All versions of mpq with dependencies
PHP Build Version
Package Version
Requires
php Version
>=5.4
The package rogiel/mpq contains the following files
Loading the files please wait ....