Anonymous - 2015-08-20

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;
}