News Feed
Jobs Feed
Sections




News Archive
David Sklar's Blog:
Parsing Reasonably-sized HTTP Responses
January 30, 2006 @ 07:31:01

David Sklar has a new post today with his solution to a common problem in PHP scripts that interact over HTTP.

From with a PHP program, I'd like to make an HTTP request and use the response body in my program. What could be simpler? PHP has a zillion ways to do it, not limited to: file_get_contents(), fopen() and fread(), fsockopen(), curl, and PEAR HTTP_Request.

One additional requirement that makes this slightly more interesting: I don't want to waste any memory on a response body that's too big. If I slurp in a giant request body, I might run over my memory_limit.

Here's what I came up with to solve this problem...

His solution uses the curl functionality inside of a class, making it a simple matter of making an object and issuing a get() call to reach out and grab that resource via a HTTP connection...

0 comments voice your opinion now!
parse http response curl function get class parse http response curl function get class


blog comments powered by Disqus

Similar Posts

Zend Developer Zone: Compressing JPEG images with JPEG Reducer

Dhiraj Patra's Blog: Caching PHP Programs with PEAR

DZone.com: What new feature in PHP 5.4 is the most important to you?

Web Developer Juice: PHP Magic Functions: Best Part of Object Oriented PHP - Part 2

C7Y: Practical Uses for the PHP Tokenizer


Community Events











Don't see your event here?
Let us know!


introduction conference tool phpunit example language application podcast zendframework2 development community opinion testing interview series unittest code framework functional release

All content copyright, 2013 PHPDeveloper.org :: info@phpdeveloper.org - Powered by the Solar PHP Framework