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 this string to be encoded (with line break)

Sender ID
Sender ID
Sender ID

When using this urlencode generator, I get the desired output which is

Sender%20ID%0ASender%20ID%0ASender%20ID

However when i using php urlencode() i get this output

Sender+ID%0D%0ASender+ID%0D%0ASender+ID

When using the php rawurlencode() i get this output

Sender%20ID%0D%0ASender%20ID%0D%0ASender%20ID

How to achieve the output same as the generator? I need it to be same since Blackberry phone will properly show line break only if the urlencode for line break is %0A (i am working on a sms system).

Right now the only solution i can think is to search for the %0D%0A and replace with %0A

share|improve this question
dude, where is your original query string? – ajreal Sep 6 '11 at 6:00
1  
%0D%0A is \r\n. Do str_replace("\r\n","\n",$string). – GlitchMr Sep 6 '11 at 6:00
Interesting. A web search for "CRLF on SMS" indeed shows that CRLF is not recognized in some SMS systems. Who'd have thought? (Not that I use Windows....) – Ray Toal Sep 6 '11 at 6:02

1 Answer

up vote 2 down vote accepted

You have a Windows line ending which is being translated directly by PHP and ignored by your generator tool. The easy way to get rid of it is to simply:

str_replace( "\r\n", "\n", $input );

%0D refers to the 13th ASCII character: \r. Since this is immediately followed by %0A (the \n) it is clear that you have the MS line ending (\r\n) instead of the *nix line ending (\n) and that the urlencode generator is using the *nix approach.

share|improve this answer
thanks, your answer solve the mystery. – cyberfly Sep 6 '11 at 6:35

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.