twitter分享按钮中的问号

时间:2013-02-26 21:42:53

标签: twitter share social

有人知道twitter分享按钮的文字中是否允许出现问号?我有以下代码,当我点击共享并出现弹出按钮时,消息将停在“谁是你最喜欢的候选人”。它没有通过问号读取文本。

<?php
 $text = "Who's your favorite candidate ? This is another message";?>
<a href="https://twitter.com/share?text=<?php echo $text; ?>&url=<?php echo $decoded_url; ?>&hashtags=contesthashtag" class="twitter-share-button" data-lang="<?php echo $lang; ?>" data-hashtags="contesthashtag" data-url="<?php echo $fanpage_url; ?>" data-text="<?php echo $text; ?>">Click here to share on Twitter</a>

很多谢谢!

1 个答案:

答案 0 :(得分:1)

在将文本作为链接放置之前,您需要对文本进行urlencode。

<?php
$text = urlencode("Who's your favorite candidate ? This is another message");
?>

然后通过twitter分享按钮链接传递$ text变量。