PHP code example of brouzie / xml-iterator

1. Go to this page and download the library: Download brouzie/xml-iterator library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

brouzie / xml-iterator example snippets




ator = \Brouzie\XmlIterator\XmlIterator::fromUri('path/to/file.xml', '/my/xpath');

try {
    $iterator->rewind();
} catch (\Brouzie\XmlIterator\Exception\FileParseError $error) {
    var_dump($error->getMessage(), $error->getContext()->getLine(), $error->getContext()->getColumn());
}

while ($iterator->hasNextItem()) {
    try {
        $item = $iterator->getNextItem();
        
        var_dump(
            $item->getXml(), // \SimpleXmlElement
            $item->getContext(),
            $item->getLine(),
            $item->getColumn()
        );
    } catch (\Brouzie\XmlIterator\Exception\LineParseError $error) {
        if ($error->getContext()) {
            var_dump($error->getMessage(), $error->getContext()->getLine(), $error->getContext()->getColumn());
        } else {
            var_dump($error->getMessage());
        }
    }    
}