PHP code example of tnmdev / msisdn-helpers

1. Go to this page and download the library: Download tnmdev/msisdn-helpers 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/ */

    

tnmdev / msisdn-helpers example snippets


msisdn('265-888-800-900')->humanize();
// returns 0888800900

msisdn('01800900')->internationalize();
// returns 2651800900

msisdn('01800900')->internationalize(true);
// returns +2651800900

msisdn('0999800900')->toString();
// returns 999800900

is_valid_tnm_number('01800900');
// returns false 

is_valid_malawian_number('01800900');
// returns true

use TNM\Msisdn\Operators\MTLMsisdn;

msisdn('0999800900') instanceof MTLMsisdn;
// return false

msisdn('01800900') instanceof MTLMsisdn;
// return true