本文整理汇总了PHP中payment::sendPaymentRequest方法的典型用法代码示例。如果您正苦于以下问题:PHP payment::sendPaymentRequest方法的具体用法?PHP payment::sendPaymentRequest怎么用?PHP payment::sendPaymentRequest使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类payment
的用法示例。
在下文中一共展示了payment::sendPaymentRequest方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: payment
function payment()
{
global $objComm, $lang;
$ProductAmount = $objComm->membershipAmount();
$ProductName = $objComm->membershipItemName();
$memberid = $_SESSION['register']['member_id'];
if ($memberid > 0) {
$row = $this->getMembers($memberid);
$TotalItemPrice = 0;
$arrProducts = explode(",", $row->membership_type);
$_SESSION['product_' . $memberid] = array();
foreach ($arrProducts as $index => $Item) {
$ItemName = urlencode($ProductName[$Item]);
$ItemPrice = $ProductAmount[$Item];
$ItemQuantity = 1;
$arrPaymentData['PAYMENTREQUEST_' . $index . '_PAYMENTREQUESTID'] = $index;
$arrPaymentData['PAYMENTREQUEST_' . $index . '_CURRENCYCODE'] = CURRENCY;
$arrPaymentData['PAYMENTREQUEST_' . $index . '_AMT'] = $ItemPrice;
$arrPaymentData['PAYMENTREQUEST_' . $index . '_ITEMAMT'] = $ItemPrice;
$arrPaymentData['L_PAYMENTREQUEST_' . $index . '_QTY0'] = $ItemQuantity;
$arrPaymentData['L_PAYMENTREQUEST_' . $index . '_AMT0'] = $ItemPrice;
$arrPaymentData['L_PAYMENTREQUEST_' . $index . '_NAME0'] = $ItemName;
$arrPaymentData['L_PAYMENTREQUEST_' . $index . '_NUMBER0'] = $Item;
$arrPaymentData['PAYMENTREQUEST_' . $index . '_SELLERPAYPALACCOUNTID'] = "AI Club";
$TotalItemPrice = $TotalItemPrice + $ItemPrice;
$TokenData['product_' . $memberid][] = array('price' => $ItemPrice, 'name' => $ItemName, 'qty' => $ItemQuantity, 'no' => $Item, 'payment_request_id' => $index, 'seller_id' => "louis.cheng@athenaintellects.com");
}
$arrPaymentData['METHOD'] = 'SetExpressCheckout';
$arrPaymentData['AMT'] = $TotalItemPrice;
$arrPaymentData['PAYMENTACTION'] = 'Sale';
$arrPaymentData['ALLOWNOTE'] = '1';
//echo "<pre>"; print_r($_REQUEST); print_r($arrPaymentData); die(__FILE__."--".__LINE__);
$objPayment = new payment($row);
$objPayment->setPaymentData($arrPaymentData);
$response = $objPayment->sendPaymentRequest();
if (strtoupper($response['ACK']) == 'SUCCESS' || strtoupper($response['ACK']) == 'SUCCESSWITHWARNING') {
$_SESSION['product_' . $memberid] = $TokenData['product_' . $memberid];
$objPayment->redirecttopaypal($response['TOKEN']);
} else {
$_SESSION['member_error'] = $response['L_LONGMESSAGE0'];
$objComm->redirect1("index.php?model=member&action=payment");
}
} else {
$_SESSION['member_error'] = "Please fill up the form then you can do payment";
$objComm->redirect1("index.php?model=member&action=register");
}
}