當前位置: 首頁>>代碼示例>>PHP>>正文


PHP payment::redirecttopaypal方法代碼示例

本文整理匯總了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");
     }
 }
開發者ID:business-expert,項目名稱:aiclubnew,代碼行數:47,代碼來源:member_model.php


注:本文中的payment::redirecttopaypal方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。