malico/mobile-cm-php

Get Telephone number's Mobile Network

1.3.1 2021-09-07 11:43 UTC

This package is auto-updated.

Last update: 2024-04-12 16:43:19 UTC


README

Determine mobile telephone operator from user number (Cameroon)

Installation

composer require malico/mobile-cm-php

Usage

<?php

require 'vendor/autoload.php';

use Malico\MobileCM\Network;

$phone = '00237653956703';
// $phone = '+237653956703';
// $phone = '237653956703';
// $phone = '653956703';

echo Network::check($phone);
// nexttel | mtn | orange | camtel

if (Network::isOrange($phone)) {
    echo 'Orange';
}
if (Network::IsNexttel($phone)) {
    echo 'Nextel';
}

if (Network::isCamtel($phone)) {
    echo 'Camtel';
}


?>

Simple. But useful

* Camtel numbers are tricky. Not sure. Feel feel free to send in a PR for that.