나는 간단한을 시도하고 모든 기록을 삭제하고이 오류가 발생하기 유지 : catch되지 않은 예외 메시지 'EnvironmentException \ Twilio \ 예외' '호스트를 확인할 수 없습니다치명적인 오류 : 0
Fatal error: Uncaught exception 'Twilio\Exceptions\EnvironmentException' with message 'Could not resolve host: 0' in C:\xampp\htdocs\twilio-php-master\Twilio\Http\CurlClient.php:41 Stack trace: #0
코드를 사용하여 아래, 도와주세요!
<?php
require_once 'twilio-php-master/Twilio/autoload.php';
use Twilio\Rest\Client;
// Set our AccountSid and AuthToken
$sid = 'MYSID';
$token = 'MYTOKEN';
// Your Account Sid and Auth Token from twilio.com/user/account
$client = new Client($sid, $token);
foreach ($client->account->recordings->getPage(0, 50, array('DateCreated>' => '2011-07-05 08:00:00', 'DateCreated<' => '2011-08-01')) as $recording) {
echo $recording->sid." -- ". $recording->date_created . "\n";
$client->account->recordings->delete($recording->sid);
}
?>
코드에 따르면,'getPage()'가'$ targetUrl'을 찾고있는 것처럼 보입니다. – aynber