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


PHP Arrays::flatten方法代码示例

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


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

示例1: combine

 /**
  * Combine any amount of strings into a path.
  *
  * @param string|array ...$paths One or as many parameters as you need. Both strings and arrays of strings can be mixed.
  *
  * @return string The combined paths. Note that the directory separators will be changed to reflect the local system.
  */
 public static function combine(...$paths)
 {
     // Flatten into simple array
     $paths = Arrays::flatten(...$paths);
     // Keep non-empty elements
     $paths = array_filter($paths, 'strlen');
     // Split into scheme:// and rest
     $scheme = self::extractScheme($paths);
     // Implode, localize and simplify everything after scheme://
     $path = implode(DIRECTORY_SEPARATOR, $paths);
     $path = self::localize($path);
     $quotedSeparator = preg_quote(DIRECTORY_SEPARATOR);
     $pattern = '#' . $quotedSeparator . '+#';
     $path = preg_replace($pattern, $quotedSeparator, $path);
     return $scheme . $path;
 }
开发者ID:nochso,项目名称:omni,代码行数:23,代码来源:Path.php

示例2: readdir

 /**
  * Permet de lire le contenu d'un répertoire lorsqu'on n'a pas accès à la SPL FileSystemIterator (version PHP < 5.3)
  *
  * @param string $path le chemin du répertoire
  * @return array tableau contenant tout le contenu du répertoire
  */
 public static function readdir($path)
 {
     // initialisation variable de retour
     $ret = array();
     // on gère par sécurité la fin du path pour ajouter ou pas le /
     if ('/' != substr($path, -1)) {
         $path .= '/';
     }
     // on vérifie que $path est bien un répertoire
     if (is_dir($path)) {
         // ouverture du répertoire
         if ($dir = opendir($path)) {
             // on parcours le répertoire
             while (false !== ($dirElt = readdir($dir))) {
                 if ($dirElt != '.' && $dirElt != '..') {
                     if (!is_dir($path . $dirElt)) {
                         $ret[] = $path . $dirElt;
                     } else {
                         $ret[] = static::readdir($path . $dirElt);
                     }
                 }
             }
             // fermeture du répertoire
             closedir($dir);
         } else {
             throw new Exception('error while opening ' . $path);
         }
     } else {
         throw new Exception($path . ' is not a directory');
     }
     return Arrays::flatten($ret);
 }
开发者ID:schpill,项目名称:thin,代码行数:38,代码来源:File.php

示例3: flatten

 public function flatten()
 {
     $this->_array = Arrays::flatten($this->_array);
     return $this;
 }
开发者ID:exonintrendo,项目名称:Primer,代码行数:5,代码来源:FluentArray.php


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