本文整理汇总了PHP中A2Billing::call_sip_iax_buddy方法的典型用法代码示例。如果您正苦于以下问题:PHP A2Billing::call_sip_iax_buddy方法的具体用法?PHP A2Billing::call_sip_iax_buddy怎么用?PHP A2Billing::call_sip_iax_buddy使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类A2Billing
的用法示例。
在下文中一共展示了A2Billing::call_sip_iax_buddy方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: strlen
// Feature to switch the Callplan from a customer : callplan_deck_minute_threshold
$A2B-> deck_switch($agi);
if (!$A2B -> enough_credit_to_call()) break;
if ($A2B->agiconfig['sip_iax_friends']==1) {
if ( (strlen($A2B -> destination)>0)
&& ( strlen($A2B -> agiconfig['sip_iax_pstn_direct_call_prefix']) > 0)
&& (strncmp($A2B -> agiconfig['sip_iax_pstn_direct_call_prefix'], $A2B -> destination,strlen($A2B -> agiconfig['sip_iax_pstn_direct_call_prefix'])) == 0) ) {
$A2B -> sip_iax_buddy = $A2B->agiconfig['sip_iax_pstn_direct_call_prefix'];
$A2B -> dnid = substr($A2B -> dnid,strlen($A2B -> agiconfig['sip_iax_pstn_direct_call_prefix']));
}
}
if ( strlen($A2B-> sip_iax_buddy) > 0 || ($A2B-> sip_iax_buddy == $A2B->agiconfig['sip_iax_pstn_direct_call_prefix'])) {
$cia_res = $A2B-> call_sip_iax_buddy($agi, $RateEngine, 0);
} else {
$ans = $A2B-> callingcard_ivr_authorize($agi, $RateEngine, 0);
// PERFORM THE CALL
$result_callperf = $RateEngine->rate_engine_performcall($agi, $A2B -> destination, $A2B);
if (!$result_callperf) {
$prompt="prepaid-dest-unreachable";
$agi-> stream_file($prompt, '#');
}
// INSERT CDR & UPDATE SYSTEM
$RateEngine->rate_engine_updatesystem($A2B, $agi, $A2B -> destination);
if ($result[0][3] && $RateEngine->dialstatus != "ANSWER") {
$A2B -> mode = $mode = 'did';
$A2B -> agiconfig['cid_enable']=0;