How can I get an HTML page as a string via PHP? - Stack Overflow most recent 30 from stackoverflow.com2010-03-20T23:49:19Zhttp://stackoverflow.com/feeds/question/1203509http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1203509/how-can-i-get-an-html-page-as-a-string-via-php1How can I get an HTML page as a string via PHP?fmsfhttp://stackoverflow.com/users/260042009-07-29T22:44:16Z2009-12-11T22:58:53Z
<p>I am fetching some info via PHP from a webpage using <code>simple_php_dom</code> and curl. The problem is that the page is not built correctly so the DOM object contains erroneous info.</p>
<p>How can I get the HTML file as a string in a PHP var so that I can run a regular expression through it?</p>
<p>Curl doesn't work as it is ignoring the bad part.<br />
<code>simple_html_dom.php</code> has the same issue.<br />
<code>wget</code> doesn't work since I don't have permissions for it on the server.</p>
http://stackoverflow.com/questions/1203509/how-can-i-get-an-html-page-as-a-string-via-php/1203514#120351411Answer by Gerrit for How can I get an HTML page as a string via PHP?Gerrithttp://stackoverflow.com/users/59762009-07-29T22:45:28Z2009-07-29T22:58:55Z<p><a href="http://www.php.net/file%5Fget%5Fcontents" rel="nofollow">file_get_contents</a> — Reads entire file into a string</p>
<pre><code>string file_get_contents (
string $filename [, int $flags= 0 [, resource $context [, int $offset= -1 [, int $maxlen= -1 ]]]]
)
</code></pre>
<p>from the manual:</p>
<blockquote>
<p>This function is similar to file(), except that file_get_contents() returns the file in a string, starting at the specified offset up to maxlen bytes. On failure, file_get_contents() will return FALSE. </p>
<p>file_get_contents() is the preferred way to read the contents of a file into a string. It will use memory mapping techniques if supported by your OS to enhance performance.</p>
</blockquote>
<p>And it works both with webpages and files. You can grab the HTML, just by using "http://whatever.com/page.html" as $filename.</p>
http://stackoverflow.com/questions/1203509/how-can-i-get-an-html-page-as-a-string-via-php/1203525#12035252Answer by karim79 for How can I get an HTML page as a string via PHP?karim79http://stackoverflow.com/users/703932009-07-29T22:48:23Z2009-07-29T23:10:20Z<p>With curl you would want to make sure that you're setting the CURLOPT_RETURNTRANSFER parameter to ensure that the page is retrieved as a string, e.g.:</p>
<pre><code> //return the transfer as a string
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
</code></pre>
<p>See <a href="http://www.php.net/manual/en/function.curl-setopt.php" rel="nofollow">http://www.php.net/manual/en/function.curl-setopt.php</a></p>
http://stackoverflow.com/questions/1203509/how-can-i-get-an-html-page-as-a-string-via-php/1203610#12036100Answer by TonyUser for How can I get an HTML page as a string via PHP?TonyUserhttp://stackoverflow.com/users/228732009-07-29T23:18:53Z2009-07-29T23:18:53Z<p>How about <a href="http://www.php.net/manual/en/function.fsockopen.php" rel="nofollow">fsockopen</a> to connect, and then use fgets to pull into your var?</p>
http://stackoverflow.com/questions/1203509/how-can-i-get-an-html-page-as-a-string-via-php/1891430#18914300Answer by tixrus for How can I get an HTML page as a string via PHP?tixrushttp://stackoverflow.com/users/2300162009-12-11T22:58:53Z2009-12-11T22:58:53Z<p>I used cURL to get the file into a string (simple_html_dom::load_file just wraps file_get_contents) then using simple_html_dom load (from string) method to parse it. That works for some URL's but it is failing in this case when the URL has a parameter string. It is fetching the URL as if it had not a parameter string. I set an agent with curl to impersonate a browser but no dice. </p>
<p>Sorry this is not an answer really, but maybe using curl will work for some people for whom the fopen setting is a problem. </p>