shitoudev/phone-location

location of phone number

Maintainers

👁 shitoudev

Package info

github.com/shitoudev/phone-location

pkg:composer/shitoudev/phone-location

Statistics

Installs: 92 121

Dependents: 1

Suggesters: 0

Stars: 155

Open Issues: 1

v0.1.13 2023-03-03 03:32 UTC

Requires

  • php: >=5.6.0

Requires (Dev)

Suggests

None

Provides

None

Conflicts

None

Replaces

None

MIT 7ac8147ddf674df8db37b01dc4c43f4f7977cd98

phonelocation

This package is auto-updated.

Last update: 2026-06-29 01:20:41 UTC


README

👁 Latest Stable Version
👁 Build Status
👁 Minimum PHP Version

PHP 实现手机号码归属地查询,数据文件来自 https://github.com/lovedboy/phone

提示

由于2019年11月携号转网已开始实行,手机号的运营商可能与实际不符,请谨慎将运营商信息用于重要的业务上。

Installation

composer require "shitoudev/phone-location:^0.1"

Usage

<?php
use Shitoudev\Phone\PhoneLocation;

// composer 方式安装
// include './vendor/autoload.php';

// 非 composer 方式安装的,引入文件
// include './src/PhoneLocation.php';
	
$pl = new PhoneLocation();
$info = $pl->find(18621281566);
print_r($info);

// Output;
Array
(
 [province] => 上海
 [city] => 上海
 [postcode] => 200000
 [tel_prefix] => 021
 [sp] => 联通
)

Thanks

https://github.com/lovedboy/phone

License

MIT license.