Skip to content

nathandentzau/php-cloudflare-geolocation

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

PHP Cloudflare Geolocation

A library that assists in retrieving the continent and country information from Cloudflare's request headers.

How to Install

You can install this library with Composer:

$ composer require nathandentzau/cloudflare-geolocation

Dependencies

How to Use

Get the current user's continent

<?php

use NathanDentzau\CloudflareGeolocation\CloudflareGeolocation;
use Symfony\Component\HttpFoundation\Request;

$request = Request::create();
$geolocation = new CloudflareGeolocation($request);

/** @var \NathanDentzau\CloudflareGeolocation\Continent */
$continent = $geolocation->getCurrentContinent();

Get the current user's country

<?php

use NathanDentzau\CloudflareGeolocation\CloudflareGeolocation;
use Symfony\Component\HttpFoundation\Request;

$request = Request::create();
$geolocation = new CloudflareGeolocation($request);

/** @var \NathanDentzau\CloudflareGeolocation\Country */
$country = $geolocation->getCurrentCountry();

Get the current user's connecting IP address

<?php

use NathanDentzau\CloudflareGeolocation\CloudflareGeolocation;
use Symfony\Component\HttpFoundation\Request;

$request = Request::create();
$geolocation = new CloudflareGeolocation($request);

$ipAddress = $geolocation->getConnectingIp();

License

This project is licensed under the MIT License.

About

A library that assists in retrieving the continent and country information from Cloudflare's IP Geolocation headers.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages