You appear to be a bot. Output may be restricted
Description
Retrieves the record for the IP address.
Usage
$mixed = Reader::get( $ipAddress );
Parameters
- $ipAddress
- ( mixed ) required –
Returns
mixed the record for the IP address
Source
File name: woocommerce/vendor/maxmind-db/reader/src/MaxMind/Db/Reader.php
Lines:
1 to 11 of 11
public function get($ipAddress) { if (\func_num_args() !== 1) { throw new InvalidArgumentException( 'Method takes exactly one argument.' ); } list($record) = $this->getWithPrefixLen($ipAddress); return $record; }