I\'m working on a PHP project running on Windows and it would be so very handy to be able to use pecl_http rather than working with cURL and re-inventing the wheel in order to d
Try this:
First, download the PECL module from the php website : PECL 5.2.2 Win32 binaries.
Then unzipp it and copy the filephp_http.dll
in your PHP extension folder.
Now edit your php.ini file (c:\WINDOWS\php.ini) and activate the module :
extension=php_http.dll
Restart apache and check the installation using phpinfo.
**EDIT: ** Link: PECL 5.2.6 Windows Binaries
Source