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("“", "%22", $string);
//$string = str_replace("”", "%22", $string);
//$string = str_replace("’", "%27", $string);
// did not work (convert to older entities)
//$string = str_replace("“", "”", $string);
//$string = str_replace("”", "“", $string);
//$string = str_replace("’", "’", $string);
// does not work (prepend with backslash)
$string = str_replace("“", "\"", $string);
$string = str_replace("”", "\"", $string);
$string = str_replace("’", "\'", $string);
return $string;
}
$string = "So my mom told me “Clean up your room before you play those video games!”. She’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...
