geolocation / freegeoip
ZF2 Geolocation module
dev-master
2014-08-16 04:59 UTC
Requires
- php: >=5.3.3
- zendframework/zendframework: 2.*
This package is not auto-updated.
Last update: 2025-01-28 05:31:58 UTC
README
Geolocation - ZF2 Module
A zend framework 2 module for geolocation.
Installation
Main Setup
By cloning project
-
This module is available on Packagist. In your project's
composer.json
use:{ "require": { "php": ">=5.3.3", "zendframework/zendframework": "*", "geolocation/freegeoip": "dev-master" }
-
Or clone this project into your
./vendor/
directory.
Usage:
-
In the controller
$geoloc = $this->getServiceLocator()->get('Geolocation\Service\Geolocation'); $geoloc->setIp( $ip); $result = $geoloc->getLocation();