/var/www/phpio/test/curl.php

1 <?php
2
// create a new cURL resource
3
$ch curl_init();
4
5
// set URL and other appropriate options
6
curl_setopt($chCURLOPT_URL"http://www.baidu.com/");
7
curl_setopt($chCURLOPT_HEADER0);
8
9
// grab URL and pass it to the browser
10
curl_exec($ch);
11
12
// close cURL resource, and free up system resources
13
curl_close($ch);
14