<?php
$columns = [
'ISO',
'Country',
'Country Code',
'Type of number',
'Voice Enabled',
'SMS Enabled',
'MMS Enabled',
'Domestic Voice Only',
'Domestic SMS only',
'Price /num/month',
'Inbound Voice price/min',
'Inbound SMS price/msg ',
'Inbound MMS price/msg ',
'Beta Status',
'Address Required',
];
var_export(
preg_replace(
'/[^a-z]+/',
'_',
array_map('strtolower', $columns)
)
);
- Output for 8.1.0 - 8.1.33, 8.2.0 - 8.2.29, 8.3.0 - 8.3.25, 8.4.1 - 8.4.12
- array (
0 => 'iso',
1 => 'country',
2 => 'country_code',
3 => 'type_of_number',
4 => 'voice_enabled',
5 => 'sms_enabled',
6 => 'mms_enabled',
7 => 'domestic_voice_only',
8 => 'domestic_sms_only',
9 => 'price_num_month',
10 => 'inbound_voice_price_min',
11 => 'inbound_sms_price_msg_',
12 => 'inbound_mms_price_msg_',
13 => 'beta_status',
14 => 'address_required',
)
preferences:
67.92 ms | 407 KiB | 5 Q