Anonymous - 2016-07-29

Hi everyone,

I write to know how to stop a crawling if It has been running for a while. Is there any method to invoke a stop the crawling?

Note: The script execute more instructions after it end the crawling, so I don`t wanna stop the execution at all, only the crawling.

Example:

If(time() - $date_start <= 0){
$crawler->stop()
send mail;
several instructions, etc.
}