Top "Simple-html-dom" questions

Simple HTML DOM is an open source HTML DOM parser written for PHP5+ which lets users easily manipulate HTML.

Find div with class using PHP Simple HTML DOM Parser

I am just starting with the mentioned Parser and somehow running on problems directly with the beginning. Referring to this …

php parsing dom simple-html-dom
How to use file_get_contents or file_get_html?

I've read through quite a few questions on here and I'm not sure if I should be using file_get_…

php file-get-contents simple-html-dom
PHP Fatal error: Call to a member function find() on a non-object however my function work

I am getting this error on Line 71 of my code, however the function of this line is executed correctly and …

php simple-html-dom
Simple HTML Dom: How to remove elements?

I would like to use Simple HTML DOM to remove all images in an article so I can easily create …

php dom simple-html-dom
Simple html dom file_get_html not working - is there any workaround?

<?php // Report all PHP errors (see changelog) error_reporting(E_ALL); include('inc/simple_html_dom.php'); //base url $…

php html-parsing file-get-contents simple-html-dom
file_get_contents(): stream does not support seeking / When was PHP behavior about this changed?

When was PHP behavior about this changed? From which PHP version is it? Warning: file_get_contents(): stream does not …

php simple-html-dom
str_get_html is not loading a valid html string

I receive an html string using curl: curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); $html_string = curl_exec($ch); When I …

php curl simple-html-dom
how to print cells of a table with simple html dom

i have this html code. Im using Simple HTML Dom to parse the data into my own php script. <…

php html-parsing simple-html-dom
Warning: file_get_contents: failed to open stream: Redirection limit reached, aborting

I read over 20 related questions on this site, searched in Google but no use. I'm new to PHP and am …

php dom redirect curl simple-html-dom
PHP Simple HTML DOM Parser: Select only DIVs with multiple classes

I was searching like mad and found no solution. The problem is simple. Let's say I have 3 DIVs: <div …

php class parsing html simple-html-dom