- Elias
Topic Author- Offline
- Administrator

Less More- Posts: 4306
- Thank you received: 0
5 months 1 week ago#3478by Elias How do you parse and process HTML/XML in PHP and extract information from it?
- Elias
Topic Author- Offline
- Administrator

Less More- Posts: 4306
- Thank you received: 0
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
- foreach($html->find('img') as $element)
- echo $element->src . '<br>';
- foreach($html->find('a') as $element)
- echo $element->href . '<br>';
- Forum
- Index
- PHP
- How do you parse and process HTML/XML in PHP and extract information from it?
Time to create page: 0.082 seconds