Looking for more information on how to do PHP the right way? Check out PHP: The Right Way

ProDevTips.com:
Parsing with Zend HTTP Client
Mar 10, 2009 @ 15:25:02

On ProDevTips.com there's a quick new tutorial posted about using the Zend_Http component of the Zend Framework to fetch a remote page that requires cookie authentication - a "cookie jar".

As it happens I’m very satisfied with the performance of Zend Http when it comes to the fetching and cookie parts. [...] Note [in my example] the use of $client->setCookieJar();, that is all that is needed to manage the logged in state, awesome. Without it the second post to adv_stats.php would’ve failed due to unauthorized access.

This fetching method pulls in the remote file, parses out the table (as defined by a pattern match) and grabs the rows/columns using getRows and getColumns and manipulates the content inside.

tagged: zendhttp client zendframework cookiejar cookie state manage

Link:


Trending Topics: