invoice / phonelocation
手机号码归属地查询
Installs: 79
Dependents: 0
Suggesters: 0
Security: 0
Stars: 3
Watchers: 0
Forks: 0
Open Issues: 0
pkg:composer/invoice/phonelocation
This package is not auto-updated.
Last update: 2025-12-11 14:39:43 UTC
README
手机号码归属地查询
支持号段 ^1[345789]
记录条数415284条
离线数据库2.8MB
安装
composer require invoice/phonelocation
使用
use Ofan\PhoneLocation; $mobileNumber = new PhoneLocation(); print_r($mobileNumber->find(15900000767)); print_r($mobileNumber->find(15900008755)); print_r($mobileNumber->find(15919252188));
Array ( [sp] => 中国移动 [province] => 广东 [city] => 中山 [zip_code] => 528400 [area_code] => 0760 ) Array ( [sp] => 中国移动 [province] => 广东 [city] => 中山 [zip_code] => 528400 [area_code] => 0760 ) Array ( [sp] => 中国移动 [province] => 广东 [city] => 珠海 [zip_code] => 519000 [area_code] => 0756 )