Twitter oauth表情符号问题 - 编码?

时间:2014-02-26 17:18:55

标签: php twitter utf-8 oauth emoji

我使用twitter oauth来获取用户的时间表。我们将此保存到我们的数据库中。

当包含表情符号的帖子出现时,我们会收到表情符号:😘,而不是所需的\ue415格式。

我们获取它们的格式对我们没用,因为我们正在将它们发布到一个无法与前者协同工作的应用程序,但对后者来说很好。

我认为这是一个编码问题,无论如何我们可以得到后一种格式的表情符号吗?

$connection = new TwitterOAuth($cons_key, $cons_secret, $oauth_token, $oauth_token_secret);

$tweets = $connection->get("https://api.twitter.com/1.1/statuses/user_timeline.json?screen_name=".$twitteruser."&count=".$notweets);
foreach ($tweets as $key => $tweet) {
    echo $tweet->text;
}

0 个答案:

没有答案