We have an url like http://site.s3.amazonaws.com/images/some image @name.jpg
inside $string
What I'm trying to do (yes, there is a whitespace around the url):
$string = urlencode(trim($string));
$string_data = file_get_contents($string);
What I get (@ is also replaced):
file_get_contents(http%3A%2F%2Fsite.s3.amazonaws.com%2Fimages%[email protected])[function.file-get-contents]: failed to open stream: No such file or directory
If you copy/paste http://site.s3.amazonaws.com/images/some image @name.jpg
into browser address bar, image will open.
What's bad and how to fix that?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…