Reputation: 14614
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
Reputation: 317119
Some options:
Upvotes: 2
Reputation: 125574
if you want something very basic and simple you can look at links :
http://www.roscripts.com/snippets/show/131
http://www.phpclasses.org/package/3547-PHP-Submit-HTTP-requests-with-the-CURL-extension.html
also look on this SO post
https://stackoverflow.com/questions/3045833/recommend-a-curl-wrapper-class-in-php
Upvotes: 4
Reputation: 1118
I've used the cURL wrapper. It's OO and supports most (all?) of the standard curl methods.
Upvotes: 0