1. Go to this page and download the library: Download skyleaf/cellular-identifier library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
skyleaf / cellular-identifier example snippets
$identifier = new CellularIdentifier('A1000001FFFFFF');
if($identifier) {
// Iterate over identifier results.
} else {
// Do error handling.
}
$identifier = new CellularIdentifier('123456789012345678');
if ($identifier) {
$identifier->specification(); // 'meid'
$identifier->format(); // '10'
$pseudo_esn = $identifier->hex()->esn()->value(); // '80FFFFFF'
$identifier->specification(); // 'esn'
$identifier->format(); // '16'
// You could have also done $identifier->esn()->hex()->value().
}
$identifier = new CellularIdentifier('99990000000000');
if ($identifier) {
// Do as many conversions as you want.
$identifier->hex()->dec()->esn()->hex()->dec();
// Only the valid spec/format values for the given identifier will be non-null.
foreach ($identifier as $specification_and_format => $value) {
if (isset($value)) {
print $specification_and_format . $value . "\n";
}
}
}
$identifier = new CellularIdentifier('99990000000001');
if ($identifier) {
$check_digit = $identifier->checkDigit();
}
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.