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.

Problem:
Twitter front end is not correctly rendering Double quotes, single quotes, and other characters posted using the Twitter API via php.

Details:
My php twitter script posts text that sometimes includes the following entities (“ ” ’). I have a function (below) that can convert any of these found in text. I've tried converting them into urlencodings (%22 and the like), backslashed characters(\' \"), and even older versions of the html entities (%rsquo; and the like) but nothing prevents the problem from occurring.

Question:
Has anyone been able to properly tweet special characters from the API using php? How?

<?php


  //...

    function MyConvert($string){

                    // did not work (convert to url encodings)
            //$string = str_replace("&#8220;", "%22", $string);
            //$string = str_replace("&#8221;", "%22", $string);
            //$string = str_replace("&#8217;", "%27", $string);

                    // did not work (convert to older entities)
            //$string = str_replace("&#8220;", "&rdquo;", $string);
            //$string = str_replace("&#8221;", "&ldquo;", $string);
            //$string = str_replace("&#8217;", "&rsquo;", $string);

                    // does not work (prepend with backslash)
            $string = str_replace("&#8220;", "\"", $string);
            $string = str_replace("&#8221;", "\"", $string);
            $string = str_replace("&#8217;", "\'", $string);

            return $string;
        }


    $string = "So my mom told me &#8220;Clean up your room before you play those video games!&#8221;. She&#8217;s such a drag...";

    $string = MyConvert($string);

    $twitter->post('http://api.twitter.com/1/statuses/update.xml', array('status'=>$string));

?>


    // On Twitter Front End
    So my mom told me \"Clean up your room before you play those video games!\". She\'s such a drag...
share|improve this question
1  
They probably should not have been HTML entities in the first place. Presuming your Twitter API handles escaping of requests, they should be plain UTF-8 characters. If you're not working in UTF-8 in PHP yourself you should convert your text without HTML entities to that. – ontrack Jun 27 '12 at 16:10

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.