I am creating an app for Automated Recurring Billing.
Please let me know which option should I opt for sending the request to server
- fsockeopen
- curl
and why one is better than another?
|
I am creating an app for Automated Recurring Billing.
and why one is better than another? |
||||
|
|
|
i would recommend you curl, because of the configurable options. e.g. ssl |
|||
|
|
|
Neither. Not directly, I mean. Writing and parsing HTTP headers over the bare metal of a socket is insane, and I find curl's API to be downright offensive. Take a look at PEAR's HTTP_Request2, it's probably even installed on your machine. And if not, you can just bundle it in with your code -- it's BSD licensed. It wraps either sockets or curl, and provides a relatively sane HTTP interface. |
|||
|
|
|
I would recommend using PHP's stream contexts with the built in functions: http://us3.php.net/manual/en/book.stream.php . Full HTTP/S functionality and integrates nicely with
This code logs into Facebook, fetches an App Login token and then uses a secure HTTP POST to delete a number of objects using the graph API. If you need to do fancier things, you can as well.
Will log Will fetch you the headers returned by the URL. No external libraries required. |
|||
|
|
|
Use Curl when you have to handle http protocol, and socket when you need a more generic access to non http server. |
|||
|
|