I run example
<?php
$url = "https://www.php.net";
$filename = "temp.html";
$ch = curl_init($url);
$fp = fopen($filename, "w");
curl_setopt ($ch, CURLOPT_FILE, $fp);
curl_setopt ($ch, CURLOPT_HEADER, 0);
curl_exec($ch);
curl_close ($ch);
fclose ($fp);
echo "test.";
?>
Warning: Unknown list entry type in request shutdown (4311568) in E:\zzb2000\Examples\php\https.php on line 17