Package home | Report new bug | New search | Development Roadmap Status: Open | Feedback | All | Closed Since Version 1.2.1

Request #12322 add method allResposes()
Submitted: 2007-10-24 15:13 UTC
From: cwiedmann Assigned: avb
Status: Closed Package: HTTP_Client (version 1.1.1)
PHP Version: Irrelevant OS: Irrelevant
Roadmaps: (Not assigned)    
Subscription  
Comments Add Comment Add patch


Anyone can comment on a bug. Have a simpler test case? Does it work for you on a different platform? Let us know! Just going to say 'Me too!'? Don't clutter the database with that please !
Your email address:
MUST BE VALID
Solve the problem : 24 + 33 = ?

 
 [2007-10-24 15:13 UTC] cwiedmann (Carsten Wiedmann)
Description: ------------ Hello, in this class there is a property _isHistoryEnabled, which defaults to TRUE, _maxRedirects also defaults to >0 (5). But there is no way to access this history. I can only access the last history entry with currentResponse(). It would be fine to have a method like: | /** | * Returns all HTTP responses | * | * @access public | * @return array | */ | function &allResponses() | { | return $this->_responses; | } Regards, Carsten

Comments

 [2008-10-10 21:42 UTC] avb (Alexey Borzov)
I thought about this idea for (quite) a while and decided I'd rather implement an iterator over the responses. Of course I cannot use 'implements Iterator' since it is a PHP4 package, but method names will be the same and those wishing to use it with foreach in PHP5 will only need to subclass.
 [2008-10-11 14:32 UTC] avb (Alexey Borzov)
Added methods to iterate over the received responses, the methods are essentially the same as in the Iterator interface.