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


PHP Collection::max方法代码示例

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


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

示例1: testGettingMaxItemsFromCollection

 public function testGettingMaxItemsFromCollection()
 {
     $c = new Collection([(object) ['foo' => 10], (object) ['foo' => 20]]);
     $this->assertEquals(20, $c->max('foo'));
     $c = new Collection([['foo' => 10], ['foo' => 20]]);
     $this->assertEquals(20, $c->max('foo'));
     $c = new Collection([1, 2, 3, 4, 5]);
     $this->assertEquals(5, $c->max());
     $c = new Collection();
     $this->assertNull($c->max());
 }
开发者ID:sa7bi,项目名称:euro16,代码行数:11,代码来源:SupportCollectionTest.php

示例2: generateSuffix

 /**
  * Generate a unique suffix for the given slug (and list of existing, "similar" slugs.
  *
  * @param string $slug
  * @param string $separator
  * @param \Illuminate\Support\Collection $list
  * @return string
  */
 protected function generateSuffix($slug, $separator, Collection $list)
 {
     $len = strlen($slug . $separator);
     // If the slug already exists, but belongs to
     // our model, return the current suffix.
     if ($list->search($slug) === $this->model->getKey()) {
         $suffix = explode($separator, $slug);
         return end($suffix);
     }
     $list->transform(function ($value, $key) use($len) {
         return intval(substr($value, $len));
     });
     // find the highest value and return one greater.
     return $list->max() + 1;
 }
开发者ID:cviebrock,项目名称:eloquent-sluggable,代码行数:23,代码来源:SlugService.php


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