本文整理匯總了PHP中payment::redirecttopaypal方法的典型用法代碼示例。如果您正苦於以下問題:PHP payment::redirecttopaypal方法的具體用法?PHP payment::redirecttopaypal怎麽用?PHP payment::redirecttopaypal使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類payment
的用法示例。
在下文中一共展示了payment::redirecttopaypal方法的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");
}
}