function the_hatebu_count($url){ //取得するURL(ついでにURLエンコード) $url = rawurlencode($url); //カウント(空の場合は0扱い) $count = @file_get_contents("http://api.b.st-hatena.com/entry.count?url={$url}"); if(!$count) return;//0のときは何も表示しない $url = preg_replace('/https?:\/\//', '', $url);//http://などを外す echo "<span class='hatebu'><a href='http://b.hatena.ne.jp/entry/{$url}' target='_blank'>{$count} users</a></span>"; }