cURL is very cool, when you compile PHP and cURL withh OpenSSL it can handle HTTPS urls transparently.

<?php
$ch 
curl_init ('https://www.thawte.com/');
curl_exec ($ch);
curl_close ($ch);
?>