I know how to do this in Ruby, but I want to do this in PHP. Grab a page and be able to parse stuff out of it.
|
feedback
|
|
Take a look at cURL. Knowing about cURL and how to use it will help in many ways as it's not specific to PHP. If you want something specific however, you can use | |||
|
feedback
|
How to parse it depends on what you are trying to do, but I'd recommend one of the XML libraries for PHP. | |||
feedback
|
|
You could use fopen in read mode: Note: these are dependent on config (see the linked manual page) but will work on most setups. For parsing, simplexml is enabled by default in PHP.
| |||
|
feedback
|
|
Its funny, I had the opposite question when I started rails development | |||
feedback
|