nathandentzau/cloudflare-geolocation
Composer 安装命令:
composer require nathandentzau/cloudflare-geolocation
包简介
A library that assists in retrieving the continent and country information from Cloudflare's headers.
README 文档
README
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
- PHP 7.2+
- Symfony HTTP Foundation component.
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.
统计信息
- 总下载量: 7
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2019-09-08