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


PHP Collection::collapse方法代码示例

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


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

示例1: rowsUngrouped

 public function rowsUngrouped()
 {
     if (!isset($this->rows)) {
         $this->rows = $this->rows();
     }
     return $this->rows instanceof GroupedCollection ? new Collection($this->rows->collapse()) : $this->rows;
 }
开发者ID:portonefive,项目名称:tabulator,代码行数:7,代码来源:TableBuilder.php

示例2: call

 /**
  * @param $resource
  * @param array $arguments
  * @param string $method
  * @return string
  * @throws Exception
  */
 private function call($resource, $arguments, $method)
 {
     try {
         $request = $this->client->{$method}($this->endpoint . $resource, ['headers' => ['Authorization' => 'apikey ' . $this->apikey, 'Content-type' => 'application/json'], 'body' => json_encode($arguments)]);
         $collection = new Collection($request->json());
         if ($collection->count() == 1) {
             return $collection->collapse();
         }
         return $collection;
     } catch (RequestException $e) {
         throw new Exception($e->getResponse()->getBody());
     }
 }
开发者ID:rodrigobendia,项目名称:mailchimp-api-v3,代码行数:20,代码来源:Mailchimp.php

示例3: makeRequest

 /**
  * @param string $resource
  * @param array $arguments
  * @param string $method
  * @return string
  * @throws Exception
  */
 private function makeRequest($resource, $arguments, $method)
 {
     try {
         $options = $this->getOptions($method, $arguments);
         $response = $this->client->{$method}($this->endpoint . $resource, $options);
         $collection = new Collection(json_decode($response->getBody(), true));
         if ($collection->count() == 1) {
             return $collection->collapse();
         }
         return $collection;
     } catch (ClientException $e) {
         throw new Exception($e->getResponse()->getBody());
     } catch (RequestException $e) {
         $response = $e->getResponse();
         if ($response instanceof ResponseInterface) {
             throw new Exception($e->getResponse()->getBody());
         }
         throw new Exception($e->getMessage());
     }
 }
开发者ID:guiwoda,项目名称:laravel-mailchimp-v3,代码行数:27,代码来源:Mailchimp.php

示例4: testCollapseWithNestedCollactions

 public function testCollapseWithNestedCollactions()
 {
     $data = new Collection([new Collection([1, 2, 3]), new Collection([4, 5, 6])]);
     $this->assertEquals([1, 2, 3, 4, 5, 6], $data->collapse()->all());
 }
开发者ID:sa7bi,项目名称:euro16,代码行数:5,代码来源:SupportCollectionTest.php


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