devtobi/gsm-number-prefixes

A php library to determine the network provider for various GSM mobile numbers.

dev-master 2021-01-08 11:24 UTC

This package is not auto-updated.

Last update: 2024-05-11 08:31:13 UTC


README

Library for identifying mobile numbers network operators

A simple library that helps identify the current network operator of a phone number based on its prefixes.

Just install the package, add the config and it is ready to use!

Requirements

  • PHP >= 7.1

Installation

composer require devtobi/gsm-number-prefixes:dev-master

Usage

Get network operator of a phone number

use devtobi\GsmNumberPrefixes\GsmNumberPrefix;

$gsmNetworkIdentifier = new GsmNumberPrefix();

$gsmNetworkIdentifier->getNetworkProvider($phone_number);

Available Response

  1. mtn
  2. airtel
  3. glo
  4. 9mobile
  5. starcomms
  6. visafone
  7. multilinks
  8. zoom
  9. ntel
  10. smile
  11. unknown

Credits