<?php
require_once('class.chunk.php');
$file = new Chunk('complex-test.xml', array('element' => 'Object'));
$i = 0;
$start = microtime(true);
while ($xml = $file->read()) {
$i++;
}
print "<p>Wow! I found {$i} <Object/>s in there!</p>";
$end = microtime(true) - $start;
print "<p>Completed in {$end}s</p>";
|