Multithreading in PHP with CURL
Cal Evans (editor) |
0 comments |
Monday, March 31, 2008
Lineke Kerckhoffs-Willems has posted a good tutorial over on the IBuildings blog titled “Multithreading in PHP with CURL”. It’s a short read with some proof-of-concept code but worth taking a look at if you’ve ever wondered how to simulate multi-threaded processing with PHP.
[…]
Extension Writing Part II: Parameters, Arrays, and ZVALs
SaraMG |
4 comments |
Sunday, June 5, 2005
In Part One of this series you looked at the basic framework of a PHP extension. You declared simple functions that returned both static and dynamic values to the calling script, defined INI options, and declared internal values (globals). In this tutorial, you’ll learn how to accept values passed into your functions from a calling script and discover how PHP and the Zend Engine manage variables internally.
[…]
Using cURL and libcurl with PHP
Jim Thome |
2 comments |
Monday, December 2, 2002
cURL and libcurl are libaries that allow a webserver to transfer files with a remote computer using a variety of Internet protocols. The libaries are highly configurable, allowing practically any type of client-server request to be peformed. By using these tools, a webserver can act as a client, creating and responding to requests using any technology built on HTTP, like XML-RPC, SOAP, or WebDAV.
[…]
