This function iterates through an array of URLs and calls the _harvest() function for each. This is the function we will call from our scripts to access the class.
<?php function process() { foreach($this->_urlarray as $url) { $this->_harvest($url); } } ?>