pheicloud/pheiphone

location of phone number

v1.0 2019-02-21 07:12 UTC

This package is not auto-updated.

Last update: 2025-04-27 08:16:43 UTC


README

手机号码归属地查询

1. 系统介绍

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

2. 安装

composer require "pheicloud/pheiphone"

3. 使用

3.1 注册

Pheicloud\Pheiphone\PheiphoneServiceProvider::class,

3.2 解析

$phone = app('pheiphone')->find(18621281566);
print_r($info);

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

4 Thanks

https://github.com/lovedboy/phone

https://github.com/shitoudev/phone-location

5. License

This project is licensed under the Apache License - see the LICENSE.md file for details