kusanagi
kusanagi

Reputation: 14614

wrapper or high level class for curl

is any class that allow to call for example method post (url, params) without creating low-level code like curl_init and other?

Upvotes: 3

Views: 4099

Answers (4)

Nev Stokes
Nev Stokes

Reputation: 9799

You could take a look at Snoopy.

Upvotes: 1

Gordon
Gordon

Reputation: 317119

Some options:

  • HTTP (PECL) / requires libcurl
  • HTTP (PEAR) / does not use cURL but fsockopen
  • Zend_HTTP / has multiple adapters, incl. cURL

Upvotes: 2

matiasf
matiasf

Reputation: 1118

I've used the cURL wrapper. It's OO and supports most (all?) of the standard curl methods.

Upvotes: 0

Related Questions