Ver Mensaje Individual
  #3 (permalink)  
Antiguo 14/08/2009, 22:02
Jhonjhon_123
 
Fecha de Ingreso: enero-2009
Mensajes: 100
Antigüedad: 15 años, 3 meses
Puntos: 1
Respuesta: Hacer un Crawler con PHP?

Te doy las funciones para hacerla:

Código PHP:
function getSource($host)
{

$archivo file($host); 
reset ($archivo); 
while (list (
$clave$val) = each($archivo))
    { 
    
$Texto_Original .= $val
    }
    
return 
$Texto_Original;
}
preg_match_all(); 
El resto es imaginacion tuya!