PHP code example of megaads / phonenumber-converter

1. Go to this page and download the library: Download megaads/phonenumber-converter 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/ */

    

megaads / phonenumber-converter example snippets


# /Config/app.php
'providers' => [
    Megaads\PhonenumberConverter\PhonenumberConverterServiceProvider
];

# /Config/phone_number_converter.php:
return [
    'tables' => [
        'table1' => ['column1_contain_phone_number', 'column2_contain_phone_number',...],
        'table2' => ['column1_contain_phone_number', 'column2_contain_phone_number',...]
    ]
];