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


PHP CopixConfig::getRealPath方法代码示例

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


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

示例1: _filtered_debug_backtrace

 /**
  * Retourne le debug_backtrace purgé des références à certains fichiers (et/ou chemins).
  *
  * @param array $pIgnorePaths Chemins à ignorer
  * @param integer $pLevel Nombre de niveau d'appels à ignorer.
  * @return array debug_backtrace
  */
 private static function _filtered_debug_backtrace($pIgnorePaths = null, $pLevel = 0)
 {
     static $recurse = false;
     if ($recurse) {
         return array();
     }
     $recurse = true;
     try {
         // Chemins à ignorer
         $ignorePaths = array(__FILE__, COPIX_CORE_PATH . 'shortcuts.lib.php', COPIX_TEMP_PATH);
         if (is_array($pIgnorePaths)) {
             $ignorePaths = array_merge($ignorePaths, $pIgnorePaths);
         }
         // Construit la regex pour vérifier les chemins
         $regex = array();
         foreach ($ignorePaths as $path) {
             $regex[] = preg_quote(CopixConfig::getRealPath($path), '/');
         }
         $pathRegex = '/^(' . implode('|', $regex) . ')/i';
         // Filtre la pile d'appel
         $backtrace = array_slice(debug_backtrace(), $pLevel + 2);
         foreach ($backtrace as $k => $step) {
             if (isset($step['file']) && preg_match($pathRegex, $step['file'])) {
                 unset($backtrace[$k]);
             }
         }
         $recurse = false;
         return array_values($backtrace);
     } catch (Exception $e) {
         $recurse = false;
         throw $e;
     }
 }
开发者ID:JVS-IS,项目名称:ICONITO-EcoleNumerique,代码行数:40,代码来源:CopixDebug.class.php

示例2: assertPathEquals

 private function assertPathEquals($expected, $actual, $message = null)
 {
     $this->assertEquals(empty($expected) ? $expected : CopixConfig::getRealPath($expected), empty($actual) ? $actual : CopixConfig::getRealPath($actual), $message);
 }
开发者ID:JVS-IS,项目名称:ICONITO-EcoleNumerique,代码行数:4,代码来源:copixtest_copixtpltest.class.php

示例3: _classFileFilter

 /**
  * Filtre les fichiers de classe.
  *
  * Accepte le fichiers nommés Copix*.class.php et ICopix*.class.php.
  * Remplit $this->fileIncludes au fur et à mesure.
  *
  * @see CopixFile::findFiles()
  */
 public function _classFileFilter($fullPath, $relativePath, $basePath, $depth)
 {
     if (!is_dir($fullPath) && preg_match('/^(I?Copix\\w+)\\.class\\.php$/i', basename($fullPath), $matches)) {
         // Ajout le lien classe=>fichier dans potentialClassPaths
         $this->_addPotentialClassPath($matches[1], $fullPath);
         $realPath = CopixConfig::getRealPath($fullPath);
         if (isset($this->fileIncludes[$realPath])) {
             return false;
         }
         $this->fileIncludes[$realPath] = sprintf("%s.'%s'", $this->basePaths[$basePath], $relativePath);
         return true;
     }
     return false;
 }
开发者ID:JVS-IS,项目名称:ICONITO-EcoleNumerique,代码行数:22,代码来源:CopixClassPathBuilder.class.php

示例4: getCopixPathPrefix

 /**
  * Détermine si un chemin peut-être défini relativement à l'une des constantes COPIX_*_PATH.
  *
  * @param string $pPath Chemin à analyser.
  * @return array Un tableau array($prefixe, $cheminRelatif), si aucun préfixe ne correspond $prefixe == null
  */
 public static function getCopixPathPrefix($pPath)
 {
     $pPath = CopixConfig::getRealPath($pPath);
     foreach (self::$_copixPathPrefixes as $name => $path) {
         if ($path === true) {
             $path = self::$_copixPathPrefixes[$name] = CopixConfig::getRealPath(constant($name));
         }
         $length = strlen($path);
         if (substr($pPath, 0, $length) == $path) {
             return array($name, substr($pPath, $length));
         }
     }
     return array(null, $pPath);
 }
开发者ID:JVS-IS,项目名称:ICONITO-EcoleNumerique,代码行数:20,代码来源:CopixFile.class.php


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