本文整理匯總了PHP中coupon::AddCard方法的典型用法代碼示例。如果您正苦於以下問題:PHP coupon::AddCard方法的具體用法?PHP coupon::AddCard怎麽用?PHP coupon::AddCard使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類coupon
的用法示例。
在下文中一共展示了coupon::AddCard方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: foreach
foreach ($data as &$da) {
$da['date_info'] = @iunserializer($da['date_info']);
if ($da['date_info']['time_type'] == 1) {
$da['endtime'] = '有效期至:' . $da['date_info']['time_limit_end'];
} else {
$da['endtime'] = '領取後' . $da['date_info']['deadline'] . '天生效' . $da['date_info']['limit'] . '天內有效';
}
}
}
$pager = pagination($total, $pindex, $psize);
}
if ($do == 'detail') {
$id = intval($_GPC['id']);
load()->classs('coupon');
$acc = new coupon($_W['acid']);
$status = $acc->AddCard($id);
$out['errno'] = 0;
$out['error'] = '';
if (is_error($status)) {
$out['errno'] = 1;
$out['error'] = $status['message'];
exit(json_encode($out));
}
$out['error'] = $status;
exit(json_encode($out));
}
if ($do == 'use') {
$card_id = trim($_GPC['card_id']);
$encrypt_code = trim($_GPC['encrypt_code']);
$signature = trim($_GPC['signature']);
$openid = trim($_GPC['openid']);