當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。