Ver Mensaje Individual
  #2 (permalink)  
Antiguo 29/10/2012, 14:12
Avatar de Sandino
Sandino
 
Fecha de Ingreso: octubre-2006
Mensajes: 277
Antigüedad: 17 años, 6 meses
Puntos: 1
Respuesta: estatus de pagina

Me respondo solo, el codigo que filtra el status es el siguiente por si a alguien le sirve.
Código PHP:
$url 'http://google.com';
$ch curl_init($url);
curl_setopt($chCURLOPT_NOBODYtrue);
curl_setopt($chCURLOPT_FOLLOWLOCATIONtrue);
curl_exec($ch);
$retcode curl_getinfo($chCURLINFO_HTTP_CODE);
curl_close($ch);