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?
feedback
|
migrated from superuser.com Feb 14 '10 at 2:10
This question came from our site for computer enthusiasts and power users.
None of these is guaranteed to be available on your server though. | |||||||
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:
You might want something more sophisticated than that, e.g., that replaces 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:
Option #2: Use regexes to strip everything between | ||||
|
feedback
|
|
one way.
| |||
|
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. ) | |||
|
feedback
|