手册中的例子
<?php
// create a new curl resource
$ch = curl_init();// set URL and other appropriate options
curl_setopt($ch, CURLOPT_URL, "http://www.example.com/");
curl_setopt($ch, CURLOPT_HEADER, 0);// grab URL and pass it to the browser
curl_exec($ch);// close curl resource, and free up system resources
curl_close($ch);
?> 
把http://www.example.com换成https://www.x.com的话
不会显示什么