0
我使用PHP來獲取我twilio日誌的詳細信息。如何在twilio PHP中獲取acount持有者名稱?
代碼:
foreach ($client->account->calls as $call)
{
$sid = $call->sid;
$call_sid = $call->parent_call_sid;
$tocaller = $call->to;
$fromcaller = $call->from;
$caller_name = $call->caller_name;
$direction = $call->direction;
$account_sid = $call->account_sid;
$nosid = $call->phone_number_sid;
$status = $call->status;
$duration = $call->duration;
$date_created = $call->date_created;
$price = $call->price;
}
但$call->from
我得到一個電話號碼,基本上我想爲來電者,因爲它是在從列twilio日誌詳細信息頁面給名字的用戶名
你爲什麼要給'$ something'分配'$ call-> something'?如果你在'foreach()'中使用它似乎有點毫無意義?只需直接引用$ call-> something ...或者我錯過了一些東西。 – Jakub
基本上我插入所有通話記錄到我的數據庫中,並且在我的通話記錄中有大約100個條目 – Omega