|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2002-04-09 07:22 UTC] wez@php.net
[2002-04-09 10:26 UTC] davidviner at puggle dot freeserve dot co dot uk
[2002-07-10 23:45 UTC] sniper@php.net
[2002-07-12 04:08 UTC] davidviner at puggle dot freeserve dot co dot uk
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Tue Oct 28 10:00:01 2025 UTC |
Using fopen to access a remote file will fail if the URL path contains spaces. A server contains the following files: /Test Dir/default.asp /TestDir/default.asp The following fopen will succeed: $f = fopen ("http://server/TestDir/default.asp", "r"); while this one will fail: $f = fopen ("http://server/Test Dir/default.asp", "r"); I have tried replacing them with "%20" and escaping the spaces "\ " but neither succeed. The above fails on both IIS and PWS.