PHP 获取WordPress中的Twitter粉丝数量
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP 获取WordPress中的Twitter粉丝数量相关的知识,希望对你有一定的参考价值。
// Get the number of twitter followers
function string_getInsertedString($long_string,$short_string,$is_html=false){
if($short_string>=strlen($long_string))return false;
$insertion_length=strlen($long_string)-strlen($short_string);
for($i=0;$i<strlen($short_string);++$i){
if($long_string[$i]!=$short_string[$i])break;
}
$inserted_string=substr($long_string,$i,$insertion_length);
if($is_html && $inserted_string[$insertion_length-1]=='<'){
$inserted_string='<'.substr($inserted_string,0,$insertion_length-1);
}
return $inserted_string;
}
function DOMElement_getOuterHTML($document,$element){
$html=$document->saveHTML();
$element->parentNode->removeChild($element);
$html2=$document->saveHTML();
return string_getInsertedString($html,$html2,true);
}
function getFollowers($username){
$x = file_get_contents("http://twitter.com/".$username);
$doc = new DomDocument;
@$doc->loadHTML($x);
$ele = $doc->getElementById('follower_count');
$innerHTML=preg_replace('/^<[^>]*>(.*)<[^>]*>$/',"\\1",DOMElement_getOuterHTML($doc,$ele));
return $innerHTML;
}
// To display it
<?php echo getFollowers("username"); ?>
以上是关于PHP 获取WordPress中的Twitter粉丝数量的主要内容,如果未能解决你的问题,请参考以下文章
PHP Wordpress Twitter粉丝
PHP Wordpress最后的Twitter条目
将 jQuery 和 Twitter PHP 代码插入 WordPress
php [Wordpress]自动链接到Twitter用户名
在Wordpress中创建twitter小部件函数.php文件
获取WordPress中Twitter关注者的数量