Skip to content

Latest commit

 

History

History
26 lines (18 loc) · 577 Bytes

README.md

File metadata and controls

26 lines (18 loc) · 577 Bytes

XBRL

Build Status

A simple API to parse XBRL taxonomies in PHP.

Usage

A taxonomy is a set of XML files:

use adrianclay\xbrl\Taxonomy\Set;

$taxonomy = new Set;
$taxonomy->import( 'Path to taxonomy', 'farming.xsd' );
foreach( $taxonomy->getConcepts() as $concept ) {
    echo $concept->getNamespace(), ": ", $concept->getName(), "\n";
}

Might give

http://www.example.com/farming/: CowsSlaughtered
http://www.example.com/farming/: CalvesBorn