Ver Mensaje Individual
  #1 (permalink)  
Antiguo 24/04/2015, 20:26
jhz1983
 
Fecha de Ingreso: diciembre-2010
Mensajes: 166
Antigüedad: 13 años, 10 meses
Puntos: 0
string to array conversion & undefined offset

buenas estoy intentado recuperar el contenido del interior de unos divs de una pagina web, he hecho esto.. pero me saltan los 2 errores del titulo y no se muy bien la razón

Código:
<?php

// Download the target file
$target = "xxxx.com";
$downloaded_page_array = file($target);
// Echo contents of file

$pattern = "/<div id=\"ip_type_(.*?)<\/div>/";

$page = implode(" ",$downloaded_page_array);

preg_match_all($pattern,$page,$res);


for($x=0;$x<$res;$x++){
echo $res[$x];
}





	



    


?>