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];
}
?>