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