COMING SOON 🚀

후이즈검색 하기 입니다.

· 10년 전 · 1551

<?
$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,488
9년 전 조회 1,897
9년 전 조회 1,937
9년 전 조회 1,672
9년 전 조회 1,541
9년 전 조회 1,592
9년 전 조회 1,930
9년 전 조회 1,504
9년 전 조회 1,740
9년 전 조회 1,572
9년 전 조회 1,662
9년 전 조회 1,528
9년 전 조회 1,794
9년 전 조회 1,501
9년 전 조회 1,475
9년 전 조회 1,455
9년 전 조회 1,544
9년 전 조회 1,476
9년 전 조회 1,536
9년 전 조회 1,632
9년 전 조회 1,444
9년 전 조회 1,473
10년 전 조회 1,478
10년 전 조회 1,587
10년 전 조회 1,454
10년 전 조회 1,566
10년 전 조회 1,399
10년 전 조회 1,474
10년 전 조회 1,296
10년 전 조회 1,520
10년 전 조회 1,328
10년 전 조회 1,353
10년 전 조회 1,459
10년 전 조회 1,370
10년 전 조회 1,396
10년 전 조회 1,318
10년 전 조회 1,737
10년 전 조회 1,767
10년 전 조회 1,735
10년 전 조회 1,679
10년 전 조회 1,469
10년 전 조회 1,606
10년 전 조회 1,755
10년 전 조회 1,450
10년 전 조회 1,764
10년 전 조회 1,720
10년 전 조회 2,098
10년 전 조회 1,703
10년 전 조회 1,910
10년 전 조회 1,552
10년 전 조회 1,679
10년 전 조회 1,402
10년 전 조회 1,458
10년 전 조회 1,520
10년 전 조회 1,514
10년 전 조회 1,664
10년 전 조회 1,431
10년 전 조회 1,458
10년 전 조회 1,421
10년 전 조회 1,373
10년 전 조회 1,440
10년 전 조회 1,250
10년 전 조회 1,324
10년 전 조회 1,222
10년 전 조회 1,366
10년 전 조회 1,316
10년 전 조회 1,790
10년 전 조회 1,264
10년 전 조회 1,229
10년 전 조회 1,483
10년 전 조회 1,289
10년 전 조회 1,259
10년 전 조회 1,273
10년 전 조회 1,217
10년 전 조회 1,133
10년 전 조회 1,129
10년 전 조회 1,227
10년 전 조회 1,229
10년 전 조회 1,159
10년 전 조회 1,047
10년 전 조회 1,139
10년 전 조회 1,113
10년 전 조회 1,134
10년 전 조회 1,179
10년 전 조회 1,181
10년 전 조회 1,124
10년 전 조회 1,128
10년 전 조회 1,186
10년 전 조회 1,144
10년 전 조회 1,226
10년 전 조회 1,151
10년 전 조회 1,099
10년 전 조회 1,075
10년 전 조회 1,084
10년 전 조회 1,068
10년 전 조회 1,099
10년 전 조회 1,128
10년 전 조회 1,086
10년 전 조회 1,147
10년 전 조회 1,081