phpircbot2/commands/dns.prefix.php

8 lines
387 B
PHP

<?php
#BOT_INCLUDE "dns" "prefix" "1"
$data = $this -> protocol -> getArgs(1, $recv);
if(trim($data) == "") $data = $recv["iphost"];
$host = gethostbyaddr($data);
if($host == $data || $host == "") $this -> call("privmsg", $recv["origin"], $recv["nick"].", your ip could not be resolved.");
else $this -> call("privmsg", $recv["origin"], $recv["nick"].", your host is: ".$host);
?>