Curl (Client for URLs) is free and open software that compiles and runs under a wide variety of operating systems.
It is available as cURL command line tool or as libcurl library.
It is useful to transfer data from or to a server, using one of the supported protocols (HTTP, HTTPS, FTP, FTPS, SCP, SFTP, TFTP, DICT, TELNET, LDAP or FILE)
curl offers lot of useful tricks like proxy support, user authentication, FTP upload, HTTP post, SSL connections, cookies, file transfer resume and much more.
curl is powered by libcurl for all transfer-related features. libcurl is free, thread-safe, IPv6 compatible, feature rich, well supported and fast.
libcurl is most probably the most portable, most powerful and most often used C-based multi-platform file transfer library on this planet - be it open source or commercial.
Using cURL you can:
- Implement payment gateways’ payment notification scripts.
- Download and upload files from remote servers.
- Login to other websites and access members only sections.
You can find below the cURL related functions in php.
You can play this Game to learn these cURL functions interestingly.
- curl_close — Close a cURL session
- curl_copy_handle — Copy a cURL handle along with all of its preferences
- curl_errno — Return the last error number
- curl_error — Return a string containing the last error for the current session
- curl_exec — Perform a cURL session
- curl_getinfo — Get information regarding a specific transfer
- curl_init — Initialize a cURL session
- curl_multi_add_handle — Add a normal cURL handle to a cURL multi handle
- curl_multi_close — Close a set of cURL handles
- curl_multi_exec — Run the sub-connections of the current cURL handle
- curl_multi_getcontent — Return the content of a cURL handle if CURLOPT_RETURNTRANSFER is set
- curl_multi_info_read — Get information about the current transfers
- curl_multi_init — Returns a new cURL multi handle
- curl_multi_remove_handle — Remove a multi handle from a set of cURL handles
- curl_multi_select — Wait for activity on any curl_multi connection
- curl_setopt_array — Set multiple options for a cURL transfer
- curl_setopt — Set an option for a cURL transfer
- curl_version — Gets cURL version information
<?php $ch = curl_init("http://www.qualitypointtech.com/"); $fp = fopen("qualitypoint_homepage.txt", "w"); curl_setopt($ch, CURLOPT_FILE, $fp); curl_setopt($ch, CURLOPT_HEADER, 0); curl_exec($ch); curl_close($ch); fclose($fp); ?>
You can find here some of the applications written in PHP/CURL
We can do lot of things using cURL including managing cookies. I may be writing separate post to explain in detail.
Our Team is having good experience in php especially using cURL.
We had done many challenging projects using cURL. Our automatic resume posting project is an excellent project with lot of challenges. We were able to develop this application for automatically posting resume to around 70 US based job sites.
If you want to develop any similar application you can contact me. (For example, if you are in UK you may be interested to do the samething for UK based job sites).
Or, contact me if you want to know about any other business opportunity using cURL (e.g Twitter application, News extraction, SEO tools, key word analysis, autopilot scripts, small music/movie search engine, automatic social bookmarking posting, etc)
More Articles...
You can bookmark this blog for further reading, or you can subscribe to our blog feed.
No comments:
Post a Comment