Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a value in variable as follows...

$variable = "chicken soup.jpg";

when i do the following, spaces are converted to a + symbol in the output

$body = "www.abc.com/" . $variable
mail($to, $subject, $body,$headers)

Output in mail received: www.abc.com/chicken+soup.jpg

But i want the output as below ? Please help

Expected Output : www.abc.com/chicken%20soup.jpg or www.abc.com/chicken soup.jpg

i tried using str_replace function but no luck

share|improve this question
it's to be $variable = "chicken soup.jpg"; – TobSpr Nov 17 '12 at 12:06
What do you mean by 'working properly'? What is your expected output? – Maccath Nov 17 '12 at 12:06
and you're missing semicolons. – TobSpr Nov 17 '12 at 12:06
the + sign is the url encoding, since white spaces cannot be present on urls – dAm2K Nov 17 '12 at 12:08
@TobiasSpringer : i have corrected the question... please see now – logan Nov 17 '12 at 12:12
show 1 more comment

3 Answers

up vote 3 down vote accepted

I'm pretty sure, if your email-client supports to view the plain source of that message, you'll se that the url is "www.abc.com/chicken soup.jpg"; only your browser / email client encodes it, as it's an invalid URL.

If you want to produce a valid url, encode it manually with:

$body = 'www.abc.com/' . urlencode( $variable );
// this will be 'www.abc.com/chicken+soup.jpg' as this is a valid url

or:

$body = 'www.abc.com/' . rawurlencode( $variable );
// this will be 'www.abc.com/chicken%20soup.jpg'

Edit:

You can read more about the difference:

share|improve this answer

Your solution is to use urlencode() on the filename variable. This will convert spaces and other non-URL-friendly characters into %20 et al so that it can be used as part of a valid URL.

Example:

$variable = urlencode("chicken soup.jpg"); echo $variable;

Output:

chicken%20soup.jpg

Check the the urlencode() documentation for more information.

share|improve this answer

This is because all urls are encoded. It may be your E-Mail client recieves 'chicken soup.jpg' but parses it as an url and so it gets 'chicken+soup.jpg' as ' ' in urls are not valid.

share|improve this answer
How should i correct it ? i mean, I want it should be coming as it is in variable.. so that i can send proper email. – logan Nov 17 '12 at 12:14
This is proper .. with spaces it's wrong, with '+' its correct. – TobSpr Nov 17 '12 at 12:21
www.abc.com/chicken+soup.jpg is not working in Browser... www.abc.com/chicken soup.jpg is working in browser... – logan Nov 17 '12 at 12:25
Yeah, but www.abc.com/chicken soup.jpg wont work too - because the file "chicken soup.jpg" does not exist on the server – TobSpr Nov 17 '12 at 12:26
Please dont put down vote when you enter www.abc.com/chicken soup.jpg in browser it will automatically convert to www.abc.com/chicken%20soup.jpg – logan Nov 17 '12 at 12:30
show 1 more comment

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.