基本用法(GET 请求)
cURL 是一种使用 URL 语法传输数据的工具。它支持 HTTP,FTP,SCP 和许多其他(curl> = 7.19.4)。请记住,你需要安装并启用 cURL 扩展才能使用它。
// a little script check is the cURL extension loaded or not
if(!extension_loaded("curl")) {
die("cURL extension not loaded! Quit Now.");
}
// Actual script start
// create a new cURL resource
// $curl is the handle of the resource
$curl = curl_init();
// set the URL and other options
curl_setopt($curl, CURLOPT_URL, "http://www.example.com");
// execute and pass the result to browser
curl_exec($curl);
// close the cURL resource
curl_close($curl);