간단하게 트위터 팔로워 수 구하기 > 개발자팁

개발자팁

개발과 관련된 유용한 정보를 공유하세요.
질문은 QA에서 해주시기 바랍니다.

간단하게 트위터 팔로워 수 구하기 정보

PHP 간단하게 트위터 팔로워 수 구하기

본문

간단한 코드입니다~

$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
  • 복사

댓글 0개

© SIRSOFT
현재 페이지 제일 처음으로