PHP Curl script mi aiutate a capire come si usa?
Inviato: 14/02/2013, 20:59
ciao a tutti.. ho trovato questo script che dovrebbe aprire una determinata pagina ogni tot secondi!?
solo che se lo faccio partire mi esce questo errore.
Codice: Seleziona tutto
<?php
set_time_limit (20);
function utime () {
$time = explode( " ", microtime());
$usec = (double)$time[0];
$sec = (double)$time[1];
return $sec + $usec;
}
$start = utime();
$count = 0;
$number = 60;
while ( $count < $number) {
$curl = curl_init ();
##################################
## Your Site Goes Here ##
##################################
curl_setopt ($curl, CURLOPT_URL, "xxxxx site xxxx" );
curl_setopt ($curl, CURLOPT_RETURNTRANSFER, 1 );
$siteName = curl_exec ($curl);
curl_close ($curl);
echo $siteName;
$count++;
}
echo $count;
#################################################################
//Put this at the end of page
$end = utime();
$run = $end - $start;
echo " <br> Page created in: " .
substr($run, 0, 10) . " seconds.";
?>
<br>
Codice: Seleziona tutto
Destination host forbiddenDestination host forbiddenDestination host forbiddenDestination host forbiddenDestination host forbiddenDestination host forbiddenDestination host forbiddenDestination host forbiddenDestination host forbiddenDestination host forbiddenDestination host forbiddenDestination host forbiddenDestination host forbiddenDestination host forbiddenDestination host forbiddenDestination host forbiddenDestination host forbiddenDestination host forbiddenDestination host forbiddenDestination host forbiddenDestination host forbiddenDestination host forbiddenDestination host forbiddenDestination host forbiddenDestination host forbiddenDestination host forbiddenDestination host forbiddenDestination host forbiddenDestination host forbiddenDestination host forbiddenDestination host forbiddenDestination host forbiddenDestination host forbiddenDestination host forbiddenDestination host forbiddenDestination host forbiddenDestination host forbiddenDestination host forbiddenDestination host forbiddenDestination host forbiddenDestination host forbiddenDestination host forbiddenDestination host forbiddenDestination host forbiddenDestination host forbiddenDestination host forbiddenDestination host forbiddenDestination host forbiddenDestination host forbiddenDestination host forbiddenDestination host forbiddenDestination host forbiddenDestination host forbiddenDestination host forbiddenDestination host forbiddenDestination host forbiddenDestination host forbiddenDestination host forbiddenDestination host forbiddenDestination host forbidden60
Page created in: 0.30160999 seconds.