~armagetronad-ap/armagetronad/php_server_framework

« back to all changes in this revision

Viewing changes to src/network/network.php

  • Committer: zodiacsohma1 at gmail
  • Date: 2013-04-03 00:26:27 UTC
  • Revision ID: zodiacsohma1@gmail.com-20130403002627-azchan91yd85zzxe
Please read Changelog.txt for more information on this revision.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?php
 
2
##################################################################
 
3
######                PHP SERVER FRAMEWORK                          ######
 
4
##################################################################
 
5
######  Script by: LOVER$BOY                                                            ######
 
6
######  Version: 1.2                                                                            ######
 
7
######  Description: Please leave this header. Thanks!          ######
 
8
######  Contact: zodiacsohma1@gmail.com                                         ######
 
9
##################################################################
 
10
 
 
11
class nNetwork
 
12
{
 
13
    static function isIp($ip)
 
14
    {
 
15
        $isIt = false;
 
16
        filter_var($ip, FILTER_VALIDATE_IP) ? ($isIt = true) : ($isIt = false);
 
17
        return $isIt;
 
18
    }
 
19
    
 
20
    static function getHostByIp($ip)
 
21
    {
 
22
        $host = gethostbyaddr((string)$ip);
 
23
        return new tString($host);
 
24
    } 
 
25
};
 
26
?>
 
 
b'\\ No newline at end of file'