IPInterface.php
1<?php
2
3namespace Udger\Helper;
4
9interface IPInterface {
10
11 const IPv4 = 4;
12 const IPv6 = 6;
13
14 public function getIpVersion($ip);
15
16 public function getIpLong($ip);
17
18 public function getIp6array($ip);
19}