Lines Matching refs:address
21 protected $address; variable in IPLib\\Address\\IPv4
54 * @param string $address
56 protected function __construct($address) argument
58 $this->address = $address;
67 * @param string|mixed $address the address to parse
72 public static function fromString($address, $mayIncludePort = true) argument
75 if (is_string($address) && strpos($address, '.')) {
81 if (preg_match('/^'.$rx.'$/', $address, $matches)) {
137 return $this->address;
147 return $this->address;
162 explode('.', $this->address)