isRemote() 공개 정적인 메소드

Checks if an IP is remot
public static isRemote ( string $ip ) : boolean
$ip string IP
리턴 boolean true if the IP is remote, otherwise false
예제 #1
0
 /**
  * @test
  */
 public function testRemote()
 {
     $status = Ip::isRemote('8.8.8.8');
     $this->assertTrue($status);
 }