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


PHP Stripe_Customer::all方法代码示例

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


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

示例1: get_all

 /**
  * Get last (n) charges up to 100 (default).  Cannot return more than 100 at a time.   Data
  * returned is sorted with most recent first.
  *
  * @return array - function returns associative array from stripe, we cant get objects
  */
 public function get_all($num_customers = 100, $offset = 0)
 {
     try {
         $ch = Stripe_Customer::all(array('count' => $num_customers, 'offset' => $offset));
         return $ch;
     } catch (Exception $e) {
         $this->error = TRUE;
         $this->message = $e->getMessage();
         $this->code = $e->getCode();
         return FALSE;
     }
 }
开发者ID:ruchirkakkad,项目名称:stripe-integration-as-models,代码行数:18,代码来源:stripe_cust.php

示例2: getCustomers

 /**
  * Get all customers
  * @param string $limit				Number of customers to retrieve
  * @param string $ending_before		ID of the first element in the previous list
  * @param string $starting_after	ID of the last element in the previous list
  * @param mixed $created			Created hash
  * @return array|false
  */
 public function getCustomers($limit = 10, $ending_before = null, $starting_after = null, $created = null)
 {
     try {
         $params = array_filter(array('limit' => $limit, 'ending_before' => $ending_before, 'starting_after' => $starting_after, 'created' => $created));
         return Stripe_Customer::all($params, $this->access_token);
     } catch (Exception $ex) {
         $this->log($ex);
         return false;
     }
 }
开发者ID:Daltonmedia,项目名称:stripe,代码行数:18,代码来源:StripeClient.php


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