所以,我使用 Twitter API 1.1 $connection->post 来发送推文。问题是,当我有一个特殊字符时,例如推文字符串中的撇号,即:
$vinedesc = 'News Reporter's reaction';
$connection->post('statuses/update', array('status' => $vinedesc));
该推文包含 HTML 实体,即:
News Reporter's reaction
我怎样才能阻止这种情况发生?有人建议 rawurldecode 但以下不起作用,我猜我没有正确使用它给定上下文:
$vinedescraw = 'News Reporter's reaction';
$vinedesc = rawurldecode($vinedescraw);
$connection->post('statuses/update', array('status' => $vinedesc));
有什么建议么?