0

有谁知道 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>

多谢!

4

1 回答 1

1

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

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

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

于 2013-02-26T21:57:02.217 回答