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


PHP Cart66Common::getPayPalUrl方法代码示例

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


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

示例1: validate

 /**
  * Validate the PayPal IPN by posting back the data sent from PayPal.
  * 
  * Create a request that contains exactly the same IPN variables and values in the 
  * same order, preceded with cmd=_notify-validate.
  */
 public function validate($rawPost)
 {
     $isValid = false;
     Cart66Common::log("Validate PayPal Post Data: \n" . print_r($rawPost, true));
     // Looking for local test IPNs
     if (isset($rawPost['test_ipn']) && $rawPost['test_ipn'] == '66') {
         $isValid = true;
     } else {
         $postdata = '';
         foreach ($rawPost as $i => $v) {
             $postdata .= $i . '=' . urlencode(stripslashes($v)) . '&';
         }
         $postdata .= 'cmd=_notify-validate';
         Cart66Common::log("PayPal Validation Post Back: {$postdata}");
         $web = parse_url(Cart66Common::getPayPalUrl());
         if ($web['scheme'] == 'https') {
             $web['port'] = 443;
             $ssl = 'ssl://';
         } else {
             $web['port'] = 80;
             $ssl = '';
         }
         $fp = @fsockopen($ssl . $web['host'], $web['port'], $errnum, $errstr, 30);
         if (!$fp) {
             $socketError = "Socket error --> " . $ssl . $web['host'] . ' -- ' . $web['port'] . ' -- ' . $errnum . ' -- ' . $errstr . ' -- 30';
             Cart66Common::log('[' . basename(__FILE__) . ' - line ' . __LINE__ . "] PayPal IPN Validation Socket Error: {$socketError}");
             echo "IPN Socket Failure: {$socketError}";
         } else {
             fputs($fp, "POST " . $web['path'] . " HTTP/1.1\r\n");
             fputs($fp, "Host: " . $web['host'] . "\r\n");
             fputs($fp, "Content-type: application/x-www-form-urlencoded\r\n");
             fputs($fp, "Content-length: " . strlen($postdata) . "\r\n");
             fputs($fp, "Connection: close\r\n\r\n");
             fputs($fp, $postdata . "\r\n\r\n");
             while (!feof($fp)) {
                 $info[] = @fgets($fp, 1024);
             }
             fclose($fp);
             $infoString = implode(',', $info);
             if (eregi('VERIFIED', $infoString)) {
                 // PayPal Verification Success'
                 $isValid = true;
                 Cart66Common::log('[' . basename(__FILE__) . ' - line ' . __LINE__ . "] PayPal IPN Validation succeeded: {$infoString}");
             } else {
                 // PayPal Verification Failed
                 Cart66Common::log('[' . basename(__FILE__) . ' - line ' . __LINE__ . "] PayPal Validation failed: {$infoString}");
             }
         }
     }
     return $isValid;
 }
开发者ID:rbredow,项目名称:allyzabbacart,代码行数:57,代码来源:Cart66PayPalIpn.php

示例2: __construct

 public function __construct()
 {
     $paypalUrl = Cart66Common::getPayPalUrl();
     Cart66Common::log("Constructing PayPal Gateway for IPN using URL: {$paypalUrl}");
 }
开发者ID:rbredow,项目名称:allyzabbacart,代码行数:5,代码来源:Cart66PayPalStandard.php


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