후이즈검색 하기 입니다.

· 10년 전 · 1620

<?
$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,534
9년 전 조회 1,934
9년 전 조회 1,982
9년 전 조회 1,716
9년 전 조회 1,575
9년 전 조회 1,632
9년 전 조회 1,979
9년 전 조회 1,565
9년 전 조회 1,805
9년 전 조회 1,633
9년 전 조회 1,735
9년 전 조회 1,606
9년 전 조회 1,866
9년 전 조회 1,575
9년 전 조회 1,543
9년 전 조회 1,513
9년 전 조회 1,621
9년 전 조회 1,560
9년 전 조회 1,607
10년 전 조회 1,705
10년 전 조회 1,511
10년 전 조회 1,529
10년 전 조회 1,543
10년 전 조회 1,674
10년 전 조회 1,520
10년 전 조회 1,623
10년 전 조회 1,457
10년 전 조회 1,540
10년 전 조회 1,357
10년 전 조회 1,576
10년 전 조회 1,385
10년 전 조회 1,421
10년 전 조회 1,529
10년 전 조회 1,422
10년 전 조회 1,462
10년 전 조회 1,392
10년 전 조회 1,806
10년 전 조회 1,831
10년 전 조회 1,800
10년 전 조회 1,760
10년 전 조회 1,534
10년 전 조회 1,668
10년 전 조회 1,839
10년 전 조회 1,546
10년 전 조회 1,837
10년 전 조회 1,806
10년 전 조회 2,177
10년 전 조회 1,787
10년 전 조회 1,987
10년 전 조회 1,621
10년 전 조회 1,761
10년 전 조회 1,473
10년 전 조회 1,533
10년 전 조회 1,593
10년 전 조회 1,578
10년 전 조회 1,733
10년 전 조회 1,500
10년 전 조회 1,539
10년 전 조회 1,516
10년 전 조회 1,441
10년 전 조회 1,512
10년 전 조회 1,328
10년 전 조회 1,393
10년 전 조회 1,307
10년 전 조회 1,449
10년 전 조회 1,392
10년 전 조회 1,869
10년 전 조회 1,341
10년 전 조회 1,304
10년 전 조회 1,562
10년 전 조회 1,369
10년 전 조회 1,352
10년 전 조회 1,345
10년 전 조회 1,285
10년 전 조회 1,220
10년 전 조회 1,198
10년 전 조회 1,302
10년 전 조회 1,296
10년 전 조회 1,230
10년 전 조회 1,122
10년 전 조회 1,204
10년 전 조회 1,185
10년 전 조회 1,205
10년 전 조회 1,258
10년 전 조회 1,262
10년 전 조회 1,202
10년 전 조회 1,207
10년 전 조회 1,242
10년 전 조회 1,219
10년 전 조회 1,301
10년 전 조회 1,212
10년 전 조회 1,167
10년 전 조회 1,150
10년 전 조회 1,165
10년 전 조회 1,144
10년 전 조회 1,171
10년 전 조회 1,184
10년 전 조회 1,155
10년 전 조회 1,219
10년 전 조회 1,150