간단하게 트위터 팔로워 수 구하기 정보
PHP 간단하게 트위터 팔로워 수 구하기본문
간단한 코드입니다~
$url = "https://twitter.com/users/show/kim";
$url = "https://twitter.com/users/show/kim";
$response = file_get_contents ( $url );
$t_profile = new SimpleXMLElement ( $response );
$count = $t_profile->followers_count;
echo "Twitter Followers : ".$count;
추천
1
1
댓글 0개