Subversion Repositories vgwhois

Rev

Rev 5 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
2 daniel-mar 1
#!/usr/bin/php
2
<?php
3
 
4
#
11 daniel-mar 5
#  VGWhoIs (ViaThinkSoft Global WhoIs, a fork of generic Whois / gwhois)
5 daniel-mar 6
#  Subprogram: sn TLD whois
2 daniel-mar 7
#
5 daniel-mar 8
#  (c) 2013 by Daniel Marschall, ViaThinkSoft <info@daniel-marschall.de>
2 daniel-mar 9
#
5 daniel-mar 10
#  License: https://www.gnu.org/licenses/gpl-2.0.html (GPL version 2)
2 daniel-mar 11
#
12
 
13
require_once __DIR__ . '/../../shared/php_includes/common_functions.inc.php';
14
 
15
$domain = isset($argv[1]) ? $argv[1] : '';
16
 
17
$url = 'http://whois.nic.sn/';
18
 
19
$post = "domaine=$domain";
20
 
21
$cont = file_get_contents2($url, $post);
22
 
23
preg_match('@<div class="content">(.+)</div>@ismU', $cont, $m);
24
 
25
$cont = $m[1];
26
 
27
$cont = strip_tags($cont);
28
 
29
echo trim(html_entity_decode($cont))."\n";