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


PHP Arr::last方法代码示例

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


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

示例1: last

 /**
  * Get the last item from the collection.
  *
  * @param  callable|null  $callback
  * @param  mixed  $default
  * @return mixed
  */
 public function last(callable $callback = null, $default = null)
 {
     if (is_null($callback)) {
         return count($this->items) > 0 ? end($this->items) : value($default);
     }
     return Arr::last($this->items, $callback, $default);
 }
开发者ID:jeandrocouto,项目名称:warmupdelivery,代码行数:14,代码来源:Collection.php

示例2:

 /**
  * Return the last element in an array passing a given truth test.
  *
  * @param  array $array
  * @param  callable $callback
  * @param  mixed $default
  * @return mixed
  */
 function array_last($array, $callback, $default = null)
 {
     return Arr::last($array, $callback, $default);
 }
开发者ID:saj696,项目名称:pipe,代码行数:12,代码来源:helpers.php

示例3: getExceptionHandlerInfo

 /**
  * Get exception handler information.
  *
  * @param \Exception $e
  *
  * @return array
  */
 protected function getExceptionHandlerInfo(Exception $e)
 {
     $exceptionClassName = Arr::last(explode('\\', get_class($e)));
     $handlerClassName = "Hero\\Exceptions\\Handlers\\{$exceptionClassName}Handler";
     return [$exceptionClassName, $handlerClassName];
 }
开发者ID:krisanalfa,项目名称:hero,代码行数:13,代码来源:Handler.php

示例4: last

 /**
  * Get the last item from the collection.
  *
  * @param  callable|null  $callback
  * @param  mixed  $default
  * @return mixed
  */
 public function last(callable $callback = null, $default = null)
 {
     return Arr::last($this->items, $callback, $default);
 }
开发者ID:GinoPane,项目名称:framework,代码行数:11,代码来源:Collection.php

示例5: getFirstLoop

 /**
  * Get an instance of the first loop in the stack.
  *
  * @return array
  */
 public function getFirstLoop()
 {
     return ($last = Arr::last($this->loopsStack)) ? (object) $last : null;
 }
开发者ID:hannesvdvreken,项目名称:framework,代码行数:9,代码来源:Factory.php

示例6: buildMirrors

 protected function buildMirrors($disks)
 {
     $main = $this->disk(Arr::first($disks))->getAdapter();
     if (count($disks) > 2) {
         $second = $this->buildMirrors(array_slice($disks, 1));
     } else {
         $second = $this->disk(Arr::last($disks))->getAdapter();
     }
     return new \League\Flysystem\Replicate\ReplicateAdapter(new \Litipk\Flysystem\Fallback\FallbackAdapter($main, $second, true), $second);
 }
开发者ID:danhunsaker,项目名称:laravel-flysystem-others,代码行数:10,代码来源:FlysystemOtherManager.php

示例7: getClassName

 /**
  * Get class name from instance.
  *
  * @param mixed $object
  *
  * @return string
  */
 protected function getClassName($object)
 {
     return Arr::last(explode('\\', get_class($object)), function () {
         return true;
     });
 }
开发者ID:krisanalfa,项目名称:corgi,代码行数:13,代码来源:Handler.php


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