ipwhois/ipwhois-php
Composer 安装命令:
composer require ipwhois/ipwhois-php
包简介
Official PHP client for the ipwhois.io IP Geolocation API. Simple, dependency-free, supports single and bulk IP lookups.
README 文档
README
Official, dependency-free PHP client for the ipwhois.io IP Geolocation API.
- ✅ Single and bulk IP lookups (IPv4 and IPv6)
- ✅ Works with both the Free and Paid plans
- ✅ HTTPS by default
- ✅ Localisation, field selection, threat detection, rate info
- ✅ Never throws — all errors returned as
success: falsearrays - ✅ No external dependencies — only the cURL extension
- ✅ PHP 8.0+
Installation
composer require ipwhois/ipwhois-php
Free vs Paid plan
The same IPWhois class is used for both plans. The only difference is whether
you pass an API key:
- Free plan — create the client without arguments. No API key, no signup required. Suitable for low-traffic and non-commercial use.
- Paid plan — create the client with your API key from https://ipwhois.io. Higher limits, plus access to bulk lookups and threat-detection data.
$free = new \Ipwhois\IPWhois(); // Free plan — no API key $paid = new \Ipwhois\IPWhois('YOUR_API_KEY'); // Paid plan — with API key
Everything else (lookup(), options, error handling) is identical.
Quick start — Free plan (no API key)
require 'vendor/autoload.php'; use Ipwhois\IPWhois; $ipwhois = new IPWhois(); // no API key $info = $ipwhois->lookup('8.8.8.8'); echo $info['country'] . ' ' . $info['flag']['emoji'] . PHP_EOL; // → United States 🇺🇸 echo $info['city'] . ', ' . $info['region'] . PHP_EOL; // → Mountain View, California
Quick start — Paid plan (with API key)
Get an API key at https://ipwhois.io and pass it to the constructor:
require 'vendor/autoload.php'; use Ipwhois\IPWhois; $ipwhois = new IPWhois('YOUR_API_KEY'); // with API key $info = $ipwhois->lookup('8.8.8.8'); echo $info['country'] . ' ' . $info['flag']['emoji'] . PHP_EOL; // → United States 🇺🇸 echo $info['city'] . ', ' . $info['region'] . PHP_EOL; // → Mountain View, California
ℹ️ Pass nothing to look up your own public IP:
$ipwhois->lookup();— works on both plans.
Lookup options
Every option below can be passed per call, or set once on the client as a default.
| Option | Type | Plans needed | Description |
|---|---|---|---|
lang |
string | Free + Paid | One of: en, ru, de, es, pt-BR, fr, zh-CN, ja |
fields |
array | Free + Paid | Restrict the response to specific fields (e.g. ['country', 'city']) |
rate |
bool | Basic and above | Include the rate block (limit, remaining) |
security |
bool | Business and above | Include the security block (proxy/vpn/tor/hosting) |
Setting defaults once
Every option can be passed two ways: per call (as the second argument to
lookup() / bulkLookup()) or once as a default on the client. Per-call
options always override the defaults, so it's safe to set sensible defaults
and only override what differs for a specific call.
Defaults are set with fluent setters — setLanguage(), setFields(),
setSecurity(), setRate(), setTimeout(), setConnectTimeout(),
setUserAgent() — and can be chained:
use Ipwhois\IPWhois; // Free plan $ipwhois = (new IPWhois()) ->setLanguage('en') ->setFields(['success', 'country', 'city', 'flag.emoji']) ->setTimeout(8);
use Ipwhois\IPWhois; // Paid plan $ipwhois = (new IPWhois('YOUR_API_KEY')) ->setLanguage('en') ->setFields(['success', 'country', 'city', 'flag.emoji']) ->setTimeout(8);
Either client behaves the same way at call time — per-call options always win over the defaults:
$ipwhois->lookup('8.8.8.8'); // uses lang=en, the field whitelist, and timeout=8 $ipwhois->lookup('1.1.1.1', ['lang' => 'de']); // overrides lang for this single call only
⚠️ When you restrict fields with
setFields()(or the per-call'fields'option), the API only returns the fields you ask for. Always include'success'in the list if you rely on$info['success']for error checking — otherwise the field will be missing on responses.
ℹ️
setSecurity(true)requires Business+ andsetRate(true)requires Basic+. See the table above for what's available where.
HTTPS Encryption
By default, all requests are sent over HTTPS. If you need to disable it (for
example, in environments without an up-to-date CA bundle), pass 'ssl' => false
to the constructor:
use Ipwhois\IPWhois; // Free plan $ipwhois = new IPWhois(null, ['ssl' => false]);
use Ipwhois\IPWhois; // Paid plan $ipwhois = new IPWhois('YOUR_API_KEY', ['ssl' => false]);
ℹ️ HTTPS is strongly recommended for production traffic — your API key is sent in the query string and would otherwise travel in clear text.
Bulk lookup (Paid plan only)
The bulk endpoint sends up to 100 IPs in a single GET request. Each address counts as one credit. Available on the Business and Unlimited plans.
$ipwhois = new IPWhois('YOUR_API_KEY'); $results = $ipwhois->bulkLookup([ '8.8.8.8', '1.1.1.1', '208.67.222.222', '2c0f:fb50:4003::', // IPv6 is fine — mix freely ]); foreach ($results as $row) { if (($row['success'] ?? false) === false) { // Per-IP errors (e.g. "Invalid IP address") are returned inline, // they do NOT throw — the rest of the batch is still usable. echo "skip {$row['ip']}: {$row['message']}\n"; continue; } echo "{$row['ip']} → {$row['country']}\n"; }
ℹ️ Bulk requires an API key. Calling
bulkLookup()without one will fail at the API level.
Error handling
The library never throws. Every failure — invalid IP, bad API key, rate
limit, network outage, missing extension, bad options — comes back inside
the response array with success => false and a message. Just check
$info['success'] after every call:
$info = $ipwhois->lookup('8.8.8.8'); if (!$info['success']) { error_log("Lookup failed: {$info['message']}"); return; } echo $info['country'];
This means an outage of the ipwhois.io API (or of your server's DNS, connection, etc.) will never surface as a fatal error in your application — you decide how to react.
Error response fields
Every error response contains success: false, a human-readable message,
and an error_type so you can branch on the category of the failure. Some
errors include extra fields you can branch on:
| Field | When it's present |
|---|---|
success |
Always — false for error responses (true for successful responses) |
message |
Always — human-readable description of what went wrong |
error_type |
Always — one of 'api', 'network', 'environment', or 'invalid_argument' |
http_status |
On HTTP 4xx / 5xx responses |
retry_after |
On HTTP 429 — free plan only (the paid endpoint does not send a Retry-After header) |
$info = $ipwhois->lookup('8.8.8.8'); if (!$info['success']) { if (($info['http_status'] ?? 0) === 429) { sleep($info['retry_after'] ?? 60); // …retry } if (($info['error_type'] ?? null) === 'network') { // DNS failure, connection refused, timeout, … } error_log("Error: {$info['message']}"); return; }
Response shape
A successful response includes (depending on your plan and selected options):
{
"ip": "8.8.4.4",
"success": true,
"type": "IPv4",
"continent": "North America",
"continent_code": "NA",
"country": "United States",
"country_code": "US",
"region": "California",
"region_code": "CA",
"city": "Mountain View",
"latitude": 37.3860517,
"longitude": -122.0838511,
"is_eu": false,
"postal": "94039",
"calling_code": "1",
"capital": "Washington D.C.",
"borders": "CA,MX",
"flag": {
"img": "https://cdn.ipwhois.io/flags/us.svg",
"emoji": "🇺🇸",
"emoji_unicode": "U+1F1FA U+1F1F8"
},
"connection": {
"asn": 15169,
"org": "Google LLC",
"isp": "Google LLC",
"domain": "google.com"
},
"timezone": {
"id": "America/Los_Angeles",
"abbr": "PDT",
"is_dst": true,
"offset": -25200,
"utc": "-07:00",
"current_time": "2026-05-08T14:31:48-07:00"
},
"currency": {
"name": "US Dollar",
"code": "USD",
"symbol": "$",
"plural": "US dollars",
"exchange_rate": 1
},
"security": {
"anonymous": false,
"proxy": false,
"vpn": false,
"tor": false,
"hosting": false
},
"rate": {
"limit": 250000,
"remaining": 50155
}
}
For the full field reference, see the official documentation.
An error response looks like:
{
"success": false,
"message": "Rate limit exceeded",
"error_type": "api", // 'api' / 'network' / 'environment' / 'invalid_argument'
"http_status": 429, // present for HTTP 4xx / 5xx
"retry_after": 60 // additionally present on HTTP 429 — free plan only
}
Requirements
- PHP 8.0 or newer
- ext-curl
- ext-json
Contributing
Issues and pull requests are welcome on GitHub.
License
MIT © ipwhois.io
ipwhois/ipwhois-php 适用场景与选型建议
ipwhois/ipwhois-php 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 63 次下载、GitHub Stars 达 8, 最近一次更新时间为 2026 年 05 月 10 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「geolocation」 「geoip」 「ip-api」 「ip-geolocation」 「ip-lookup」 「ipwhois」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 ipwhois/ipwhois-php 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 ipwhois/ipwhois-php 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 ipwhois/ipwhois-php 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
A GeoIP decorator/processor for monolog
Maps in minutes. Powered by the Google Maps API.
A very simple PHP library for handling http://ip-api.com/
The official PHP library for apiip.net that allowing customers to automate IP address validation and geolocation lookup in websites, applications and back-office system. Visit our API docs at https://apiip.net/documentation
Geolocate IP addresses using a variety of third-party services
Supports GeoIP services (sypexgeo.net).
统计信息
- 总下载量: 63
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 8
- 点击次数: 39
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2026-05-10