sharer.php
Facebookページタブアプリケーションで次のFacebookスクリプトを実行しています。を使用して通貨記号を追加しようとするまで、共有はうまく機能します
htmlentities(money_format("%10.2n", $numrows[price]))
面白いことに、この共有オプションは通貨記号だけでなくページにもあり、通貨記号は正しく表示されています。
ここに完全なコードがあります。
<?php
$title=urlencode(''.$numrows['title'].' | '. htmlentities(money_format("%10.2n", $numrows[price])).' '.$currency_code.'');
$url=urlencode(''.$token.'');
$summary=urlencode(''.$numrows['description'].'');
$image=urlencode(''.$numrows['img1'].'');
?>
<a id="button" onClick="window.open('http://www.facebook.com/sharer.php?s=100&p[title]=<?php echo $title;?>&p[summary]=<?php echo $summary;?>&p[url]=<?php echo $url; ?>&&p[images][0]=<?php echo $image;?>', 'sharer', 'toolbar=0,status=0,width=550,height=400');" target="_parent" href="javascript: void(0)">
<input type='submit' class='btn' title='Share This Item With Friends' value='Share On Facebook'></form>
</a>
前もって感謝します。これは何日もの間私を夢中にさせています