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


PHP Stripe_ApiRequestor::utf8方法代码示例

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


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

示例1: instanceUrl

 /**
  * @return string The instance URL for this resource. It needs to be special
  *    cased because it doesn't fit into the standard resource pattern.
  */
 public function instanceUrl()
 {
     $id = $this['id'];
     if (!$id) {
         $class = get_class($this);
         $msg = "Could not determine which URL to request: {$class} instance " . "has invalid ID: {$id}";
         throw new Stripe_InvalidRequestError($msg, null);
     }
     if (isset($this['customer'])) {
         $parent = $this['customer'];
         $base = self::classUrl('Stripe_Customer');
     } else {
         if (isset($this['recipient'])) {
             $parent = $this['recipient'];
             $base = self::classUrl('Stripe_Recipient');
         } else {
             return null;
         }
     }
     $parent = Stripe_ApiRequestor::utf8($parent);
     $id = Stripe_ApiRequestor::utf8($id);
     $parentExtn = urlencode($parent);
     $extn = urlencode($id);
     return "{$base}/{$parentExtn}/cards/{$extn}";
 }
开发者ID:vilmark,项目名称:vilmark_main,代码行数:29,代码来源:Card.php

示例2: retrieve

 public function retrieve($id, $params = null)
 {
     $requestor = new Stripe_ApiRequestor($this->_apiKey);
     $base = $this['url'];
     $id = Stripe_ApiRequestor::utf8($id);
     $extn = urlencode($id);
     list($response, $apiKey) = $requestor->request('get', "{$base}/{$extn}", $params);
     return Stripe_Util::convertToStripeObject($response, $apiKey);
 }
开发者ID:danielcoats,项目名称:schoolpress,代码行数:9,代码来源:List.php

示例3: retrieve

 public function retrieve($id, $params = null)
 {
     list($url, $params) = $this->extractPathAndUpdateParams($params);
     $requestor = new Stripe_ApiRequestor($this->_apiKey);
     $id = Stripe_ApiRequestor::utf8($id);
     $extn = urlencode($id);
     list($response, $apiKey) = $requestor->request('get', "{$url}/{$extn}", $params);
     return Stripe_Util::convertToStripeObject($response, $apiKey);
 }
开发者ID:hyrmedia,项目名称:builderengine,代码行数:9,代码来源:List.php

示例4: instanceUrl

 public function instanceUrl()
 {
     $id = $this['id'];
     $class = get_class($this);
     if (!$id) {
         throw new Stripe_InvalidRequestError("Could not determine which URL to request: {$class} instance has invalid ID: {$id}");
     }
     $id = Stripe_ApiRequestor::utf8($id);
     $base = self::classUrl($class);
     $extn = urlencode($id);
     return "{$base}/{$extn}";
 }
开发者ID:macconsultinggroup,项目名称:WordPress,代码行数:12,代码来源:ApiResource.php

示例5: testUtf8

 public function testUtf8()
 {
     // UTF-8 string
     $x = "é";
     $this->assertEqual(Stripe_ApiRequestor::utf8($x), $x);
     // Latin-1 string
     $x = "é";
     $this->assertEqual(Stripe_ApiRequestor::utf8($x), "é");
     // Not a string
     $x = TRUE;
     $this->assertEqual(Stripe_ApiRequestor::utf8($x), $x);
 }
开发者ID:JSpier,项目名称:smacamp,代码行数:12,代码来源:ApiRequestorTest.php

示例6: instanceUrl

 public function instanceUrl()
 {
     $id = $this['id'];
     $class = get_class($this);
     if ($id === null) {
         $message = "Could not determine which URL to request: " . "{$class} instance has invalid ID: {$id}";
         throw new Stripe_InvalidRequestError($message, null);
     }
     $id = Stripe_ApiRequestor::utf8($id);
     $base = $this->_lsb('classUrl', $class);
     $extn = urlencode($id);
     return "{$base}/{$extn}";
 }
开发者ID:q0821,项目名称:esportshop,代码行数:13,代码来源:ApiResource.php

示例7: instanceUrl

 /**
  * @return string The API URL for this Stripe subscription.
  */
 public function instanceUrl()
 {
     $id = $this['id'];
     $customer = $this['customer'];
     if (!$id) {
         throw new Stripe_InvalidRequestError("Could not determine which URL to request: " . "class instance has invalid ID: {$id}", null);
     }
     $id = Stripe_ApiRequestor::utf8($id);
     $customer = Stripe_ApiRequestor::utf8($customer);
     $base = self::classUrl('Stripe_Customer');
     $customerExtn = urlencode($customer);
     $extn = urlencode($id);
     return "{$base}/{$customerExtn}/subscriptions/{$extn}";
 }
开发者ID:vilmark,项目名称:vilmark_main,代码行数:17,代码来源:Subscription.php

示例8: instanceUrl

 public function instanceUrl()
 {
     $id = $this['id'];
     $fee = $this['fee'];
     if (!$id) {
         throw new Stripe_InvalidRequestError("Could not determine which URL to request: " . "class instance has invalid ID: {$id}", null);
     }
     $id = Stripe_ApiRequestor::utf8($id);
     $fee = Stripe_ApiRequestor::utf8($fee);
     $base = self::classUrl('Stripe_ApplicationFee');
     $feeExtn = urlencode($fee);
     $extn = urlencode($id);
     return "{$base}/{$feeExtn}/refunds/{$extn}";
 }
开发者ID:q0821,项目名称:esportshop,代码行数:14,代码来源:ApplicationFeeRefund.php

示例9: instanceUrl

 /**
  * @return string The instance URL for this resource. It needs to be special
  *    cased because it doesn't fit into the standard resource pattern.
  */
 public function instanceUrl()
 {
     $id = $this['id'];
     $customer = $this['customer'];
     $class = get_class($this);
     if (!$id) {
         $msg = "Could not determine which URL to request: {$class} instance " . "has invalid ID: {$id}";
         throw new Stripe_InvalidRequestError($msg, null);
     }
     $id = Stripe_ApiRequestor::utf8($id);
     $customer = Stripe_ApiRequestor::utf8($customer);
     $base = self::classUrl('Stripe_Customer');
     $customerExtn = urlencode($customer);
     $extn = urlencode($id);
     return "{$base}/{$customerExtn}/cards/{$extn}";
 }
开发者ID:chiho13,项目名称:checkoutwizard,代码行数:20,代码来源:Card.php

示例10: instanceUrl

 public function instanceUrl()
 {
     $id = $this['id'];
     $class = get_class($this);
     if (!$id) {
         //throw new Stripe_InvalidRequestError("Could not determine which URL to request: $class instance has invalid ID: $id");
         try {
             throw new Stripe_InvalidRequestError(isset($error['message']) ? $error['message'] : null, $rcode, $rbody, $resp);
         } catch (Stripe_InvalidRequestError $e) {
             echo $e->getMessage();
         }
     }
     $id = Stripe_ApiRequestor::utf8($id);
     $base = self::classUrl($class);
     $extn = urlencode($id);
     return "{$base}/{$extn}";
 }
开发者ID:jacquesbagui,项目名称:ofuz,代码行数:17,代码来源:ApiResource.php


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