Skip to content
This repository has been archived by the owner on Sep 2, 2023. It is now read-only.

Latest commit

 

History

History
26 lines (22 loc) · 463 Bytes

README.md

File metadata and controls

26 lines (22 loc) · 463 Bytes

phpamiibo

Parse amiibo dumps in PHP

Installation

composer require thisisareku/phpamiibo

Usage

<?php
require 'vendor/autoload.php';

use ThisIsAreku\PhpAmiibo\AmiiboDump;

$filePath = '/path/to/dump.bin';
$amiibo = new AmiiboDump($filePath);

var_dump([
    $amiibo->getHexGameSerie(),
    $amiibo->getHexVariation(),
    $amiibo->getHexType(),
    $amiibo->getHexAmiibo(),
    $amiibo->getHexAmiiboSerie(),
    $amiibo->getHex02(),
]);