zf2-geolocation
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.jsonuse:{ "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();