当前位置: 首页>>代码示例>>PHP>>正文


PHP payment::sendPaymentRequest方法代码示例

本文整理汇总了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");
     }
 }
开发者ID:business-expert,项目名称:aiclubnew,代码行数:47,代码来源:member_model.php


注:本文中的payment::sendPaymentRequest方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。