후이즈검색 하기 입니다.

· 10년 전 · 1672

<?
$whois_server = array(
        'com' => 'whois.internic.net',
        'net' => 'whois.internic.net',
        'org' => 'whois.publicinterestregistry.net',
        'co.kr' => 'whois.krnic.net'
);
$whois_avail  = array(
        'whois.internic.net' => 'No match for ',
        'whois.publicinterestregistry.net' => 'NOT FOUND',
        'whois.krnic.net' => 'is not registered to KRNIC'
);

// 도메인 조회 함수
function check_domain( $domain, $suffix ) {
        global $whois_server,$whois_avail;

        $server = $whois_server[$suffix];
        $avail  = $whois_avail[$server];

        // 잘못된 도메인(com,net,org,co.kr이 아닌)
        if (!$server) return false;

        $sock = fsockopen($server,43,$errno,$errstr,30);
        if (!$sock) {
                echo "$errstr [$errno]";
                return false;
        }
        fwrite($sock,"$domain.$suffix\r\n");
        while (!feof($sock)) {
                $ret .= fgets($sock);
        }
    echo $ret;
        fclose($sock);

        if (strstr($ret,$avail)) return true;
        return false;
}

// 조회 도메인이 있다면
if ($domain) {
        echo "<table cellspacing=0 border=1>\n";
        foreach($whois_server as $suffix => $server) {
                $ret = check_domain($domain,$suffix);
                if ($ret)
                        $OX = 'O';
                else
                        $OX = 'X';
                echo " <tr>\n";
                echo "  <td align=right>$domain.$suffix ($OX)</td>\n";
                echo "  <td> 등록 ";
                if (!$ret) echo "불";
                echo "가능</td>\n";
                echo " </tr>\n";
        }
        echo "</table>\n";
}
?>
<br><br><h3>Domain Search</h3>
<hr size=-1>
<form method=post>
Search Domain : <input type=text name=domain value="<?=$domain?>"><input type=submit value="조회">
</form>  

|
댓글을 작성하시려면 로그인이 필요합니다.

프로그램

+
제목 글쓴이 날짜 조회
9년 전 조회 1,574
9년 전 조회 1,955
9년 전 조회 2,016
9년 전 조회 1,760
9년 전 조회 1,607
9년 전 조회 1,665
9년 전 조회 2,010
9년 전 조회 1,604
9년 전 조회 1,857
9년 전 조회 1,665
9년 전 조회 1,784
9년 전 조회 1,649
9년 전 조회 1,913
9년 전 조회 1,611
9년 전 조회 1,582
9년 전 조회 1,577
10년 전 조회 1,664
10년 전 조회 1,607
10년 전 조회 1,646
10년 전 조회 1,758
10년 전 조회 1,551
10년 전 조회 1,570
10년 전 조회 1,596
10년 전 조회 1,723
10년 전 조회 1,573
10년 전 조회 1,679
10년 전 조회 1,491
10년 전 조회 1,575
10년 전 조회 1,396
10년 전 조회 1,618
10년 전 조회 1,415
10년 전 조회 1,460
10년 전 조회 1,567
10년 전 조회 1,473
10년 전 조회 1,506
10년 전 조회 1,432
10년 전 조회 1,845
10년 전 조회 1,874
10년 전 조회 1,852
10년 전 조회 1,810
10년 전 조회 1,593
10년 전 조회 1,716
10년 전 조회 1,886
10년 전 조회 1,601
10년 전 조회 1,871
10년 전 조회 1,850
10년 전 조회 2,230
10년 전 조회 1,830
10년 전 조회 2,037
10년 전 조회 1,672
10년 전 조회 1,819
10년 전 조회 1,523
10년 전 조회 1,589
10년 전 조회 1,641
10년 전 조회 1,627
10년 전 조회 1,797
10년 전 조회 1,568
10년 전 조회 1,592
10년 전 조회 1,599
10년 전 조회 1,509
10년 전 조회 1,571
10년 전 조회 1,380
10년 전 조회 1,458
10년 전 조회 1,355
10년 전 조회 1,519
10년 전 조회 1,465
10년 전 조회 1,938
10년 전 조회 1,399
10년 전 조회 1,368
10년 전 조회 1,631
10년 전 조회 1,431
10년 전 조회 1,405
10년 전 조회 1,405
10년 전 조회 1,356
10년 전 조회 1,290
10년 전 조회 1,259
10년 전 조회 1,380
10년 전 조회 1,347
10년 전 조회 1,305
10년 전 조회 1,193
10년 전 조회 1,274
10년 전 조회 1,251
10년 전 조회 1,283
10년 전 조회 1,329
10년 전 조회 1,320
10년 전 조회 1,277
10년 전 조회 1,277
10년 전 조회 1,306
10년 전 조회 1,291
10년 전 조회 1,366
10년 전 조회 1,277
10년 전 조회 1,231
10년 전 조회 1,215
10년 전 조회 1,232
10년 전 조회 1,231
10년 전 조회 1,239
10년 전 조회 1,254
10년 전 조회 1,215
10년 전 조회 1,271
10년 전 조회 1,208