Foros del Web » Programando para Internet » PHP »

Parsear THML

Estas en el tema de Parsear THML en el foro de PHP en Foros del Web. Hola Estuve usando simple_html_dom.php, para parcear un html, pero no funciona el file_get_html Estuve haciendo esta prueba Código: <?php include("simplehtmldom_1_5/simple_html_dom.php"); // Create DOM from URL ...
  #1 (permalink)  
Antiguo 02/11/2017, 18:14
 
Fecha de Ingreso: enero-2010
Mensajes: 128
Antigüedad: 14 años, 3 meses
Puntos: 2
Parsear THML

Hola

Estuve usando simple_html_dom.php, para parcear un html, pero no funciona el file_get_html

Estuve haciendo esta prueba

Código:
<?php
include("simplehtmldom_1_5/simple_html_dom.php");
// Create DOM from URL 
$html = file_get_html('http://google.com'); 
	
// Find all article blocks 
foreach($html->find('div.article') as $article) { 
    $item['title']     = $article->find('div.title', 0)->plaintext; 
    $item['intro']    = $article->find('div.intro', 0)->plaintext; 
    $item['details'] = $article->find('div.details', 0)->plaintext; 
    $articles[] = $item; 
} 

print_r($articles);  

?>
Pero me salen estos errores:
Warning: file_get_contents(): stream does not support seeking in

Warning: file_get_contents(): Failed to seek to position -1 in the stream in ...line 75

Fatal error: Uncaught Error: Call to a member function find() on boolean...

Ent. se me ocurrio usar:

$html = file_get_contents('http://google.com');
echo $html;

obtengo el HTML, pero yo quiero obtener algunos Div en particular (y sus hijos) ¿como puedo saber donde termina ese Div? asi uso alguna funcion de manejo de String y obtengo la porcion del html que necesito

Gracias.-
__________________
Por favor evitar comentarios del estilo "leer el manual...", ya lo hice pero aun tengo dudas, por eso pregunto acá
  #2 (permalink)  
Antiguo 02/11/2017, 22:17
Avatar de mortiprogramador
Colaborador
 
Fecha de Ingreso: septiembre-2009
Ubicación: mortuoria
Mensajes: 3.805
Antigüedad: 14 años, 7 meses
Puntos: 214
Respuesta: Parcear THML

Hola, revisa esto
__________________
"Si consigues ser algo más que un hombre, si te entregas a un ideal, si nadie puede detenerte, te conviertes en algo muy diferente."
Visita piggypon.com

Etiquetas: html
Atención: Estás leyendo un tema que no tiene actividad desde hace más de 6 MESES, te recomendamos abrir un Nuevo tema en lugar de responder al actual.
Respuesta




La zona horaria es GMT -6. Ahora son las 01:00.