Twilio Laravel 4使用国家/地区代码验证电话号码

时间:2016-06-23 06:34:40

标签: php laravel-4 twilio

如何使用laravel 4验证带国家/地区代码的电话号码

以下是我的代码

use Aloha\Twilio\Twilio;

    $phoneNumber = new PhoneNumber($this->phoneNo, $this->countryCode);

        // Your Account Sid and Auth Token from twilio.com/user/account
        $sid = "11111";
        $token = "rtrg";
        $client = new Lookups_Services_Twilio($sid, $token);

        $number = $client->phone_numbers->get($this->phoneNo, array("CountryCode" => $this->countryCode, "Type" => "carrier"));

我收到了以下错误:

  

Class' Managers \ Lookups_Services_Twilio'找不到

请告知。

0 个答案:

没有答案