voy posteando a medida que voy averiguando a ver si me pueden entender..
Código PHP:
$web = implode('', file('http://www.xxx.com/index.html'));
//esto extrae el contenido del archivo
$patron = 'link rel="image_src" href="';
//esto extrae el contenido del archivo
preg_match($patron, $web, $resultado);
echo $resultado[1];
Pero, me devuelve este resultado:
warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in C:\AppServ\www\drupal6\themes\amity_island\node.tp l.php on line 51.