Some users requested the possibility to get the number of remining URLs to crawl from the link-cache.
When you extend PHPCrawler you can add this functionality by adding a functionlike the following, then filtering on the link fetched status:
function linkCount() { $allURLs = $this->LinkCache->getAllURLs(); $numberOfURLs = count($allURLs); return $numberOfURLs; }
You seem to have CSS turned off. Please don't fill out this field.
Anonymous
View and moderate all "feature-requests Discussion" comments posted by this user
Mark all as spam, and block user from posting to "Feature Requests"
When you extend PHPCrawler you can add this functionality by adding a functionlike the following, then filtering on the link fetched status:
function linkCount()
{
$allURLs = $this->LinkCache->getAllURLs();
$numberOfURLs = count($allURLs);
return $numberOfURLs;
}