phpWhois.org/cli_example.php

15 lines
205 B
PHP
Raw Normal View History

2005-07-16 11:19:30 +00:00
#!/usr/local/bin/php -n
<?php
include("main.whois");
if (isset($argv[1]))
$domain=$argv[1];
else
$domain = "example.com";
$whois = new Whois($domain);
$result = $whois->Lookup();
print_r($result);
?>