我使用以下代码查询手机的类型。我只使用php作为此项目的语言。我使用以下代码。
我只是将手机“+12252763867”作为输出。来自以下代码
$number->phone_number;
问题是我如何获得手机的类型?
<?php
require "NewServices/Twilio.php";
$AccountSid ="xxx" ;
$AuthToken ="xxxx" ;
$from = '<twilio phone>';
$to = '+12252763867';
$client1 = new Services_Twilio($AccountSid, $AuthToken);
$client = new Lookups_Services_Twilio($AccountSid, $AuthToken);
$number = $client->phone_numbers->get("+12252763867");
$body = $number->phone_number;
try
{
$client1->account->sms_messages->create($from,$to,$body);
} catch (Services_Twilio_RestException $e) {
}
?>
答案 0 :(得分:1)
Twilio开发者传道者在这里。
如您在此处显示的那样查看电话号码:
$number = $client->phone_numbers->get("+12252763867");
$body = $number->phone_number;
您也可以查询该号码的其他字段,例如:
$country = $number->country_code
$format = $number->national_format
如果您想了解更多信息,可以将Type
参数作为“运营商”传递:
$number = $client->phone_numbers->get("+12252763867", array("Type" => "carrier"))
然后,您可以获得您要询问的号码类型。
$type = $number->carrier->type
运营商信息每个电话号码的费用为0.005美元。