3년전에 만들었던 링크 인기도 자료..

· 14년 전 · 1151 · 2
이거 3년전에 만들어서 phpschool 에 올렸던건데
 
오늘 디져보니 나와서 여기도 올릴께요..ㅋㅋ
 
<?
 /*
   제작 2008.05.15
   제작자 서비
   주요사이트들의 링크인기도 를 가져와서 보여주기
 */
 // 구글 카운트 가져오기
 function get_googlecount($url,$urlfull){
   if($fp=@fopen($urlfull, "r")){
    while($googlecount=@fgets($fp,300)){
     $start=@strpos($googlecount,"<font size=-1><b>http://".$url."</b>에 링크된 약 <b>");
     if($start>1){
         $stop=@strpos($googlecount,"</b>개 결과 중 <b>");
         $googlecount=@substr($googlecount,$start+44+strlen($url),$stop-$start-(44+strlen($url)));
         return str_replace(",","",$googlecount);
     }
    }
   }
 }
 // 네이버 카운트 가져오기
 function get_navercount($urlfull){
   if($fp=@fopen($urlfull, "r")){
    while($navercount=@fgets($fp,300)){
     $start=@strpos($navercount,"<span class=\"title_num\">");
     if($start>=1){
        $stop=@strpos($navercount,"</span>");
        $navercount=@substr($navercount,$start+24,$stop-($start));
        $start1=@strpos($navercount,"/");
        $stop1=@strpos($navercount,"건</span>");
        $navercount=@substr($navercount,$start1+2,$stop1-6);
        return str_replace(",","",$navercount);
     }
    }
   }
 }
 // 야후 카운트 가져오기
 function get_yahoocount($urlfull){
  if($fp=@fopen($urlfull, "r")){
   while($yahoocount=@fgets($fp,300)){
    $stop=@strpos($yahoocount,"  </span>");//
    if($stop>=1){
     $yahoocount=@substr($yahoocount,$stop-16,$stop-($stop-16));
     $start1=@strpos($yahoocount,"[");
     $stop1=@strpos($yahoocount,"]");
     $yahoocount=@substr($yahoocount,$start1+2,$stop1-6);
     $yahoocount = explode("-",$yahoocount);
     $yahoocount = ltrim($yahoocount[0]);
     $yahoocount = rtrim($yahoocount);
     $yahoocount = explode(" ",$yahoocount);
     return str_replace(",","",$yahoocount[0]);
    }
   }
  }
 }
 // 다음 카운트 가져오기
 function get_daumcount($urlfull){
  if($fp=@fopen($urlfull, "r")){
   while($daumcount=@fgets($fp,300)){
    $stop=@strpos($daumcount,")</span>");
    if($stop>=1){
     $daumcount=@substr($daumcount,$stop-16,$stop-($stop-16));
     $start1=@strpos($daumcount,"총");
     $stop1=@strpos($daumcount,"개");
     $daumcount=@substr($daumcount,$start1+2,$stop1-($start1+2));
     return str_replace(",","",$daumcount);
    }
   }
  }
 }
?>
   <table width="100%"  border="0" cellspacing="0" cellpadding="0">
                <tr>
                  <td><table width="100%"  border="0" cellpadding="2" cellspacing="1" bgcolor="9CB8D5">
                    <tr>
                      <td bgcolor="#FFFFFF"><table width="100%"  border="0" cellpadding="8" cellspacing="0" bgcolor="F4F7FB">
      <form name=f1 action="<?=$PHP_SELF?>">
                        <tr>
                          <td><table width="100%"  border="0" cellspacing="0" cellpadding="0">
                            <tr>
                              <td height="35" class="t11_6">도메인 입력                                  <INPUT class=input_blue
                              style="PADDING-LEFT: 4px; WIDTH: 200px; HEIGHT: 18px; font-family:돋움" name=url value=<?=$url?> ><input type="image" src="../img/b_search1.gif" width="46" height="18" hspace="3" align="absmiddle" border=0><span class="t11_2">예) www.daum.net 또는 daum.net</span></td>
                            </tr>
                            <tr>
                              <td height="1" bgcolor="B1C7DF"></td>
                            </tr>
                            <tr>
                              <td height="70" valign="bottom" class="t11_6">- 링크인기도는 조회 도메인에 연결된 링크수를 검색합니다.<br>
                                - 실시간 검색하므로 검색엔진의 상태에 따라서 다소 시간이 걸릴 수 있습니다.<br>
                                - 링크인기도는 검색엔진의 검색결과에 영향을 미치는 중요 변수 중 하나입니다.<br>
        - 링크인기도지수(%) = 조회사이트 링크인기도 / 네이버(www.naver.com) 링크인기도 * 100</td>
                            </tr>
                          </table></td>
                        </tr>
      </form>
                      </table></td>
                    </tr>
                  </table></td>
                </tr>
    <?if($url){?>
<?
 //링크인기도지수(%) = 조회사이트 링크인기도 / 네이버(www.naver.com) 링크인기도 * 100
 $urlfull1 = "http://web.search.naver.com/search.naver?where=webkr&sm=tab_jum&query=link%3Ahttp%3A//".$url."";
 $navercount = get_navercount($urlfull1);   // 네이버 갯수
 if($navercount == "") $navercount = 1;
 $navercount = ceil($navercount);
 $urlfull2 = "http://www.google.co.kr/search?complete=1&hl=ko&q=link%3Ahttp%3A%2F%2F".$url."&btnG=Google+%EA%B2%80%EC%83%89&lr=";
 $googlecount = get_googlecount($url,$urlfull2); // 구글 갯수
 $googltop =   ceil($googlecount)/($navercount * 100);
 $googltop = round($googltop,3);
 $urlfull3 = "http://kr.search.yahoo.com/search/web?p=link%3Ahttp%3A%2F%2F".$url."";
 $yahoocount = get_yahoocount($urlfull3);
 $yahootop =   ceil($yahoocount)/($navercount * 100);
 $yahootop = round($yahootop,3);
 $urlfull4 = "http://search.daum.net/search?t__nil_searchbox=btn&w=dir&q=link:http://".$url."";
 $daumcount = get_daumcount($urlfull4);
 $daumtop =   ceil($daumcount)/($navercount * 100);
 $daumtop = round($daumtop,3);
?>
                <tr>
                  <td height="8"></td>
                </tr>
                <tr>
                  <td height="30" class="t11_11"> <span class="t11_9"><strong><?=$url?></strong></span> 사이트의 링크수는<span class="t11_9"><strong> <?=number_format($yahoocount)?> </strong></span>개입니다.</td>
                </tr>
                <tr>
                  <td height="2" bgcolor="749DC7"></td>
                </tr>
                <tr>
                  <td> </td>
                </tr>
    <tr>
     <td>
      <table border=0 width=100% cellpadding=4 cellspacing=1 bgcolor="F7F7F7" style="BORDER-BOTTOM: #EAEAEA 1px solid">
       <tr>
        <td height="2" bgcolor="2882E1" colspan=6></td>
       </tr>
       <tr>
        <td class=tblm_th align=center>검색엔진</td>
        <td class=tblm_th align=center>링크인기도</td>
        <td class=tblm_th align=center>링크인기도 지수</td>
        <td class=tblm_th align=center>조회</td>
       </tr>
       <tr>
        <td height="1" bgcolor="2882E1" colspan=6></td>
       </tr>
       <tr bgcolor="#FFFFFF">
        <td align=center>구글</td>
        <td align=center><?=number_format($googlecount);?></td>
        <td align=center><?=$googltop?></td>
        <td align=center><a href="<?=$urlfull2?>" target=new>조회</a></td>
       </tr>
       <tr bgcolor="#F6F6F6">
        <td align=center>야후</td>
        <td align=center><?=number_format($yahoocount);?></td>
        <td align=center><?=$yahootop?></td>
        <td align=center><a href="<?=$urlfull3?>" target=new>조회</a></td>
       </tr>
       <tr bgcolor="#FFFFFF">
        <td align=center>다음</td>
        <td align=center><?=number_format($daumcount);?></td>
        <td align=center><?=$daumtop?></td>
        <td align=center><a href="<?=$urlfull4?>" target=new>조회</a></td>
       </tr>
      </table>     
     </td>
    </tr>
    <?}?>
              </table></td>
            </tr>
          </table>
|

댓글 2개

안되네요.... 모두 조회수 0으로만 나오네요....
3년전꺼라 그런가봐요 ㅡㅡ
조만간 업그레이드 해볼께요
api 쓰기 싫으신 분들은 유용하게 쓸수있을꺼같기도 하고 ㅡㅡ
댓글을 작성하시려면 로그인이 필요합니다.

프로그램

태그 필터 (최대 3개) 전체 개발자 소스 기타 mysql 팁자료실 javascript php linux flash 정규표현식 jquery node.js mobile 웹서버 os 프로그램 강좌 썸네일 이미지관련 도로명주소 그누보드5 기획자 견적서 계약서 기획서 마케팅 제안서 seo 통계 서식 통계자료 퍼블리셔 html css 반응형 웹접근성 퍼블리싱 표준화 반응형웹 홈페이지기초 부트스트랩 angularjs 포럼 스크린리더 센스리더 개발자톡 개발자팁 퍼블리셔톡 퍼블리셔팁 기획자톡 기획자팁 프로그램강좌 퍼블리싱강좌
+
제목 글쓴이 날짜 조회
14년 전 조회 1,431
14년 전 조회 1,111
14년 전 조회 1,329
14년 전 조회 1,090
14년 전 조회 1,124
14년 전 조회 948
14년 전 조회 1,153
14년 전 조회 1,526
14년 전 조회 1,761
14년 전 조회 1,317
14년 전 조회 1,390
14년 전 조회 1,244
14년 전 조회 1,438
14년 전 조회 1,709
14년 전 조회 1,478
14년 전 조회 1,710
14년 전 조회 1,436
14년 전 조회 1,372
14년 전 조회 1,394
14년 전 조회 1,371
14년 전 조회 1,887
14년 전 조회 1,837
14년 전 조회 1,643
14년 전 조회 1,747
14년 전 조회 1,987
14년 전 조회 964
14년 전 조회 1,434
14년 전 조회 798
14년 전 조회 1,259
14년 전 조회 1,727
14년 전 조회 1,169
14년 전 조회 1,255
14년 전 조회 1,476
14년 전 조회 1,669
14년 전 조회 1,529
14년 전 조회 1,232
14년 전 조회 1,510
14년 전 조회 1,728
14년 전 조회 1,678
14년 전 조회 1,250
14년 전 조회 2,436
14년 전 조회 768
14년 전 조회 1,421
14년 전 조회 1,244
14년 전 조회 1,099
14년 전 조회 1,588
14년 전 조회 2,023
14년 전 조회 1,370
14년 전 조회 1,155
14년 전 조회 1,152
14년 전 조회 1,417
14년 전 조회 1,724
14년 전 조회 1,824
14년 전 조회 897
14년 전 조회 1,425
14년 전 조회 1,337
14년 전 조회 1,352
14년 전 조회 2,147
14년 전 조회 1,920
14년 전 조회 1,720
14년 전 조회 1,459
14년 전 조회 1,487
14년 전 조회 2,083
14년 전 조회 1,126
14년 전 조회 901
14년 전 조회 1,202
14년 전 조회 1,133
14년 전 조회 1,651
14년 전 조회 1,906
14년 전 조회 1,672
14년 전 조회 1,290
14년 전 조회 1,353
14년 전 조회 1,443
14년 전 조회 3,181
14년 전 조회 1,386
14년 전 조회 2,036
14년 전 조회 1,663
14년 전 조회 1,276
14년 전 조회 2,563
14년 전 조회 3,013
14년 전 조회 1,114
14년 전 조회 1,351
14년 전 조회 2,212
14년 전 조회 2,622
14년 전 조회 1,690
14년 전 조회 1,813
14년 전 조회 1,135
14년 전 조회 1,456
14년 전 조회 1,459
14년 전 조회 2,210
14년 전 조회 1,501
14년 전 조회 1,169
14년 전 조회 1,259
14년 전 조회 620
14년 전 조회 1,318
14년 전 조회 1,215
14년 전 조회 1,233
14년 전 조회 1,778
14년 전 조회 2,651
14년 전 조회 1,713