up vote 2 down vote favorite
1
share [g+] share [fb]

I'm new to PHP and trying to save some web pages to text files using PHP scripts. Do you know any PHP script to load a web page into a file buffer and remove HTML tags?

link|improve this question
2  
I would not be surprised if the sole purpose of this post is to get a link to the XtraComponents. The XtraComponents is just another incarnation of Safabyte/ComponentForge 'company' which sells component stolen from Rebex and other vendors. For details see cheated.by.safabyte.net and blog.safabyte.net. I would recommend removing the link from the question and leaving it as is because answers looks valueable. – Martin Vobr Feb 23 '10 at 13:58
feedback

migrated from superuser.com Feb 14 '10 at 2:10

This question came from our site for computer enthusiasts and power users.

4 Answers

None of these is guaranteed to be available on your server though.

link|improve this answer
1  
+1 for the great answer! – TiuTalk Feb 14 '10 at 2:40
I won't call external tool usage a stupid way – Col. Shrapnel Mar 1 '11 at 21:11
feedback

As the other answers have said, either standard PHP stream functions or cURL is your best bet for retrieving the HTML. As for removing the tags, here are a couple approaches:

Option #1: Use the Tidy extension, if available on your server, to walk through the document tree recursively and return the text from the nodes. Something like this:

function textFromHtml(TidyNode $node) {
    if ($node->isText()) {
        return $node->value;
    } else if ($node->hasChildren()) {
        $childText = '';
        foreach ($node->child as $child)
           $childText .= textFromHtml($child);
        return $childText;
    }
    return '';
}

You might want something more sophisticated than that, e.g., that replaces <br /> tags (where $node->name == 'br') with newlines, but this will do for a start.

Then, load the text of the HTML into a Tidy object and call your function on the body node. If you have the contents in a string, use:

$tidy = new tidy();
$tidy->parseString($contents);
$text = textFromHtml($tidy->body());

Option #2: Use regexes to strip everything between < and >. You could (and probably should) develop a more sophisticated regex that, for example, matched only valid HTML start or end tags. Any errors in the synax of the page, like a stray angle bracket in body text, could mean garbage output if you aren't careful. This is why Tidy is so nice (it is specifically designed to clean up bad pages), but it might not be available.

link|improve this answer
feedback

one way.

$url = "http://www.brothersoft.com/publisher/xtracomponents.html";
$page =file_get_contents($url);
$outfile="xtracomponents.html";
$f = fopen($outfile,"w");
fwrite($f,$page);
fclose($f);
link|improve this answer
feedback

I strongly recommend you to take a look at SimpleHTML DOM class;

SimpleHTML DOM Parser at SourceForge

With it you can search the DOM tree using css selectors like with jQuery's $() function or prototypeJS $$() function.

Although it works with file_get_contents() to get content of a web page, you can pass it HTML only with some cURL class of yours ( if you need to login etc. )

link|improve this answer
feedback

Your Answer

 
or
required, but never shown