Kalin Mintchev wrote:
here is a real example:

$fp = fopen ("http://store.el.net/index.html";, "r");
while (!feof($fp)) {
       echo fgets ($fp,4096);
  }

this works fine...

if you try it with https you'll get an error - file not found from php


I've just tried with https and it works fine. Are you sure you have php compiled --with-openssl ? Does phpinfo() show https in it's list of registered streams?
Registered PHP Streams => php, http, ftp, https, ftps, compress.zlib



-- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php



Reply via email to