推文数量

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了推文数量相关的知识,希望对你有一定的参考价值。

  1. function tweetCount($url) {
  2. $content = file_get_contents("http://api.tweetmeme.com/url_info?url=".$url);
  3. $element = new SimpleXmlElement($content);
  4. $tweets = $element->story->url_count;
  5. echo $tweets." tweets!";
  6. }
  7.  
  8. // template tag
  9.  
  10. <?php tweetCount($post->permalink); ?>

以上是关于推文数量的主要内容,如果未能解决你的问题,请参考以下文章