[PHP] Directories function opendir() - how to open an URL

2004-04-02 Thread Dave
The Directories function opendir(string path) As of PHP 4.3.0 path can also be any URL which supports directory listing This returns false eventhough the URL supports directory listing? opendir (http://www.fu.bar/images/); -- PHP General Mailing List (http://www.php.net/) To unsubscribe,

Re: [PHP] Directories function opendir() - how to open an URL

2004-04-02 Thread Curt Zirzow
* Thus wrote Dave ([EMAIL PROTECTED]): The Directories function opendir(string path) As of PHP 4.3.0 path can also be any URL which supports directory listing , however only the file:// URL wrapper supports this in PHP 4.3. As of PHP 5.0.0, support for the ftp:// URL wrapper is included as

Re: [PHP] Directories function opendir() - how to open an URL

2004-04-02 Thread Dave
Is http:// URL wrapper support included in PHP 4.3.4 ? or is this included in PHP 5.0.0? Curt Zirzow [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] * Thus wrote Dave ([EMAIL PROTECTED]): The Directories function opendir(string path) As of PHP 4.3.0 path can also be any URL which

Re: [PHP] Directories function opendir() - how to open an URL

2004-04-02 Thread Curt Zirzow
* Thus wrote Dave ([EMAIL PROTECTED]): Is http:// URL wrapper support included in PHP 4.3.4 ? or is this included in PHP 5.0.0? I wouldn't expect the http wrapper to ever support opendir functionality. Its virtually impossilble to read directoy listings from a web server. Curt Zirzow