×

Notice

The forum is in read only mode.

How do you parse and process HTML/XML in PHP and extract information from it?

  • Elias
  • Elias's AvatarTopic Author
  • Offline
  • Administrator
  • Administrator
More
5 months 1 week ago#3478by Elias
How do you parse and process HTML/XML in PHP and extract information from it?
  • Elias
  • Elias's AvatarTopic Author
  • Offline
  • Administrator
  • Administrator
More
5 months 1 week ago#3479by Elias
see the article/answerHow do you parse and process HTML/XML in PHP?How can one parse HTML/XML and extract information from it?stackoverflow.com/questions/3577641/how-...cess-html-xml-in-phpHow to modify HTML elements:// Create DOM from string 
  • $html = str_get_html('<div id="hello">Hello</div><div id="world">World</div>'); 
  • $html->find('div', 1)->class = 'bar'; 
  • $html->find('div[id=hello]', 0)->innertext = 'foo'; 
  • echo $html; 
    Extract content from HTML:// Dump contents (without tags) from HTML echo file_get_html('www.google.com/')->plaintext; 
      How to get HTML elements: 
       
      • // Create DOM from URL or file 
      •  
      • // Find all images 
      • foreach($html->find('img') as $element) 
      • echo $element->src . '<br>'; 
      •  
      • // Find all links 
      • foreach($html->find('a') as $element) 
      • echo $element->href . '<br>'; 
      Time to create page: 0.082 seconds

      Contact

      Site Info

      V. Katsanioti,

      Russia,

      Kaliningrad Oblast.

      matizegr@yahoo.com

      Visit counter

      United States of America (the)70.0%United States of America (the)
      Russian Federation (the)14.6%Russian Federation (the)
      China10.2%China

      Total:

      44

      Countries
      00004752
      Today:39
      Yesterday:44

      Who's Online

      We have 149 guests and no members online