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


PHP PayPal::receive方法代码示例

本文整理汇总了PHP中PayPal::receive方法的典型用法代码示例。如果您正苦于以下问题:PHP PayPal::receive方法的具体用法?PHP PayPal::receive怎么用?PHP PayPal::receive使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在PayPal的用法示例。


在下文中一共展示了PayPal::receive方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: exit

            }
        }
    }
    exit('Error when continuing order');
} elseif (empty($_GET['token'])) {
    exit('Access denied');
}
$response = $handler->request(array('METHOD' => 'GetExpressCheckoutDetails', 'TOKEN' => $_GET['token']));
$context = '';
$params = array();
if (!is_array($response)) {
    $modx->log(modX::LOG_LEVEL_ERROR, '[miniShop2] Error on receive details of PayPal operation: ' . $response . '; ' . print_r($_GET, 1));
} else {
    if (!empty($response['PAYMENTREQUEST_0_INVNUM'])) {
        if ($order = $modx->getObject('msOrder', $response['PAYMENTREQUEST_0_INVNUM'])) {
            $handler->receive($order, $response);
            $context = $order->get('context');
            $params['msorder'] = $order->get('id');
        } else {
            $modx->log(modX::LOG_LEVEL_ERROR, '[miniShop2] Could not retrieve order with id ' . $response['PAYMENTREQUEST_0_INVNUM']);
        }
    } else {
        $modx->log(modX::LOG_LEVEL_ERROR, '[miniShop2] Error on receive details of PayPal operation: ' . print_r($response, 1) . '; ' . print_r($_GET, 1));
    }
}
$success = $cancel = $modx->getOption('site_url');
if ($id = $modx->getOption('ms2_payment_paypal_success_id', null, 0)) {
    $success = $modx->makeUrl($id, $context, $params, 'full');
}
if ($id = $modx->getOption('ms2_payment_paypal_cancel_id', null, 0)) {
    $cancel = $modx->makeUrl($id, $context, $params, 'full');
开发者ID:rafull6,项目名称:texno-service,代码行数:31,代码来源:paypal.php


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