ZF-2530: Add methods for setting multiple GET/POST parameters at once
Description
Currently, the only way to set multiple request parameters in Zend_Http_Client is by successive calls to setParameterPost() and setParameterGet(). This is inconvenient when multiple parameters are required.
Please add setParametersPost() and setParametersGet() (note the plural) to simplify this process.
Comments
Posted by Shahar Evron (shahar) on 2008-01-31T01:59:28.000+0000
Hi,
If I understand you correctly, you can pass an associative array to either setParameterGet() or setParameterPost() to set multiple GET or POST parameters with one call. see http://framework.zend.com/manual/en/… .
Posted by Matthew Weier O'Phinney (matthew) on 2008-01-31T14:07:32.000+0000
Thanks, Shahar -- I missed that in the docs.