Skip to content

webignition/xmlStreamReader

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

58 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

xmlStreamReader

Build Status Latest Stable Version Montly Downloads

##PHP XML Stream Reader

Reads XML from either a string or a stream, allowing the registration of callbacks when an elemnt is found that matches path.

Installation with Composer

Declare xmlStreamReader as a dependency in your projects composer.json file:

{
    "require": {
      "hobnob/xml-stream-reader": "1.0.*"
    }
}

Usage Example

<?php

$xmlParser = new \Hobnob\XmlStreamReader\Parser();

$xmlParser->registerCallback(
    '/xml/node/path',
    function( \Hobnob\XmlStreamReader\Parser $parser, \SimpleXMLElement $node ) {
        // do stuff with $node
    }
);
$xmlParser->parse(fopen('file.xml', 'r'));

Contributors

Licence

© David North

Released under the The MIT License

About

PHP SAX XML Stream Reader

Resources

Stars

Watchers

Forks

Packages

 
 
 

Contributors