當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Path::normalize方法代碼示例

本文整理匯總了PHP中Path::normalize方法的典型用法代碼示例。如果您正苦於以下問題:PHP Path::normalize方法的具體用法?PHP Path::normalize怎麽用?PHP Path::normalize使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Path的用法示例。


在下文中一共展示了Path::normalize方法的7個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: setOutputDir

 /**
  * Set temp path
  * @param string $tempPath
  */
 public function setOutputDir($tempPath)
 {
     $tempPath = Path::normalize($tempPath);
     if (!is_dir($tempPath)) {
         throw new FileNotFoundException("Temp path '{$tempPath}' does not exist.");
     }
     if (!is_writable($tempPath)) {
         throw new InvalidArgumentException("Directory '{$tempPath}' is not writeable.");
     }
     $this->outputDir = $tempPath;
 }
開發者ID:jfilla,項目名稱:WebLoader,代碼行數:15,代碼來源:Compiler.php

示例2: split

 public static function split($path)
 {
     $path = Path::normalize($path);
     $ret = array();
     // we cut drive letter if os == windows and put it as first element
     if ('\\' == self::SEPARATOR && preg_match('#^([a-z]:\\\\)#i', $path, $match)) {
         $ret[] = substr($match[1], 0, 2);
         $path = str_replace($match[1], '', $path);
     }
     return array_merge($ret, explode(self::SEPARATOR, $path));
 }
開發者ID:BackupTheBerlios,項目名稱:core-svn,代碼行數:11,代碼來源:ns_path.php

示例3: cannonicalizePath

 /**
  * Make path absolute
  * @param $path string
  * @throws \WebLoader\FileNotFoundException
  * @return string
  */
 public function cannonicalizePath($path)
 {
     $rel = Path::normalize($this->root . "/" . $path);
     if (file_exists($rel)) {
         return $rel;
     }
     $abs = Path::normalize($path);
     if (file_exists($abs)) {
         return $abs;
     }
     throw new FileNotFoundException("File '{$path}' does not exist.");
 }
開發者ID:ajaxovic,項目名稱:WebLoader,代碼行數:18,代碼來源:FileCollection.php

示例4: rename

 public function rename($newPath)
 {
     $newPathNormalized = Path::normalize($newPath);
     $success = true;
     if ($this->isExists()) {
         $success = rename($this->getPhysicalPath(), Path::convertLogicalToPhysical($newPathNormalized));
     }
     if ($success) {
         $this->originalPath = $newPath;
         $this->path = $newPathNormalized;
         $this->pathPhysical = null;
     }
     return $success;
 }
開發者ID:k-kalashnikov,項目名稱:geekcon_new,代碼行數:14,代碼來源:filesystementry.php

示例5: nettoyer_chemin

 public static function nettoyer_chemin($chemin, $est_un_motif = false)
 {
     // SÉCURITÉ : $chemin nettoyé
     //   * Ne contient pas '\0'
     //   * Ne contient pas '../'
     //   * Ne contient pas de double occurence de '/'
     //   * Ne se termine pas par '/'
     //   * Ne commence pas par '/'
     //   * Est découpé en segments
     //   * Chaque segment est nettoyé avec nettoyer_segment().
     $chemin = preg_replace("/\\0/", '', $chemin);
     // TODO : vérifier si c'est bien ça ! (supprime _toutes_ les occurences ???)
     $chemin = Path::normalize($chemin);
     $chemin = preg_replace("/^\\/*/", '', $chemin);
     $chemin = preg_replace("/\\/*\$/", '', $chemin);
     $segments = qw($chemin, '/');
     if ($est_un_motif) {
         $segments = array_map(array("self", "nettoyer_segment_motif"), $segments);
     } else {
         $segments = array_map(array("self", "nettoyer_segment"), $segments);
     }
     return $segments;
 }
開發者ID:jsmaniac,項目名稱:2010-moteur-site-simple,代碼行數:23,代碼來源:chemin.php

示例6: getRelative

 /**
  * Relative path to public temp directory
  * @param null|string $fileName
  * @return string
  */
 public function getRelative($fileName = null)
 {
     return Path::normalize($this->relative . (empty($fileName) ? '' : '/' . $fileName));
 }
開發者ID:pipaslot,項目名稱:utils,代碼行數:9,代碼來源:WwwDirectory.php

示例7: testNormalize

 /**
  * @dataProvider getNormalizeData
  */
 public function testNormalize($path, $expected)
 {
     $this->assertEquals($expected, Path::normalize($path));
 }
開發者ID:ruudk,項目名稱:Gaufrette,代碼行數:7,代碼來源:PathTest.php


注:本文中的Path::normalize方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。