本文整理汇总了PHP中A2Billing::refill_card_with_voucher方法的典型用法代码示例。如果您正苦于以下问题:PHP A2Billing::refill_card_with_voucher方法的具体用法?PHP A2Billing::refill_card_with_voucher怎么用?PHP A2Billing::refill_card_with_voucher使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类A2Billing
的用法示例。
在下文中一共展示了A2Billing::refill_card_with_voucher方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: while
}
if ($try > 3) {
if ($A2B->set_inuse == 1) {
$A2B->callingcard_acct_start_inuse($agi, 0);
}
$agi->hangup();
exit;
}
} while ($return);
}
}
// Feature to switch the Callplan from a customer : callplan_deck_minute_threshold
$A2B->deck_switch($agi);
if (!$A2B->enough_credit_to_call() && $A2B->agiconfig['jump_voucher_if_min_credit'] == 1) {
$A2B->debug(DEBUG, $agi, __FILE__, __LINE__, "[NOTENOUGHCREDIT - Refill with vouchert]");
$vou_res = $A2B->refill_card_with_voucher($agi, 2);
if ($vou_res == 1) {
$A2B->debug(DEBUG, $agi, __FILE__, __LINE__, "[ADDED CREDIT - refill_card_withvoucher Success] ");
} else {
$A2B->debug(DEBUG, $agi, __FILE__, __LINE__, "[NOTENOUGHCREDIT - refill_card_withvoucher fail] ");
}
}
if ($A2B->agiconfig['ivr_enable_account_information'] == 1) {
$A2B->debug(DEBUG, $agi, __FILE__, __LINE__, " [GET ACCOUNT INFORMATION]");
$res_dtmf = $agi->get_data('prepaid-press4-info', 5000, 1, '#');
//Press 4 to get information about your account
if ($res_dtmf['result'] == "4") {
$QUERY = "SELECT UNIX_TIMESTAMP(c.lastuse) as lastuse, UNIX_TIMESTAMP(c.lock_date) as lock_date, UNIX_TIMESTAMP(c.firstusedate) as firstuse\n FROM cc_card c\n WHERE username = '{$A2B->username}'\n LIMIT 1";
$result = $A2B->instance_table->SQLExec($A2B->DBHandle, $QUERY);
$card_info = $result[0];
$A2B->debug(DEBUG, $agi, __FILE__, __LINE__, "[QUERY] : " . $QUERY);