尝试使用Twitter搜索API。当我在重新发推文的推文上拨打utf8_decode
时,我会将语音标记/引号显示为问号...
代码:
$output .= '
<div class="leftcoltweet">
<div class="timg">
<a href="' . $account . '" target="_blank"><img src="' . $image .'"></a>
</div>
<div class="ttweet">
' . utf8_decode($tweet) . '
</div>
<div class="clr"></div>
<div class="ttime">' . $time . '</div>
<div class="clr"></div>
</div>
';
输出:
RT @IVAOAERO: ?@FilipJonckers: We are aware of and working on a fix for the ATIS issue introduced after last nights network upgrade http://t.co/6FODzr0Y?
所有其他符号都能正确显示。
我必须设置要使用的语言吗?如果您想知道我制作的原子查询或其他任何内容,请告诉我。
答案 0 :(得分:8)
请注意utf8_decode()
使用iso-8859-1(拉丁语)编码字符串仅。
如果你知道字符串的字符集,你可以调用:
echo iconv("THE_CHARSET","utf8",$tweet);