Подключение по https через CURL

<?php
/**
 * Подкдючение по https через CURL
 * автор: Nc_Soft
 * 19.11.08
 */

//чтобы просто получить страницу!
$ch=curl_init('https://www.icq.com/register/');
curl_setopt($ch, CURLOPT_HEADER, 1);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_USERAGENT, "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0)");
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);
echo curl_exec($ch);

?>