クローラーに実行させる可能性のある、約5分以上の深い再帰の実行について話しています。ページのURLリンクとサブURLリンクを抽出するため
PHPでの深い再帰は現実的ではないようです
例えば
getInfo("www.example.com");
function getInfo($link){
$content = file_get_content($link)
if($con = $content->find('.subCategories',0)){
echo "go deeper<br>";
getInfo($con->find('a',0)->href);
}
else{
echo "reached deepest<br>";
}
}