URL'in Twitter'da Paylaşım Sayısı Getirme (PHP)

Bir URL'in Twitter kaç kere tweetlendiğini çekmek için aşağıdaki fonksyonu kullanabilirsiniz. Kullanmak için minimum PHP 5 ve PECL json desteği gerekmektedir.

function get_social_count_twitter( $link ) {
	$link = urlencode($link);
	$data = file_get_contents("http://urls.api.twitter.com/1/urls/count.json?url={$link}");
	$json = json_decode($data, true);
	$count = $json["count"];
	return $count ? $count : 0;
}

 

Kullanım:

echo(get_social_count_twitter("http://www.google.com"));
php, api, sosyal medya, twitter
PHP