ソースを参照

[Finder] fixed ugly code

Fabien Potencier 15 年 前
コミット
6060d015eb

+ 1 - 1
src/Symfony/Components/Finder/Iterator/LimitDepthFilterIterator.php

@@ -50,7 +50,7 @@ class LimitDepthFilterIterator extends \FilterIterator
   {
   {
     $fileinfo = $this->getInnerIterator()->current();
     $fileinfo = $this->getInnerIterator()->current();
 
 
-    $depth = substr_count(str_replace('\\', '/', $fileinfo->getPath()), '/') - substr_count(str_replace('\\', '/', $this->baseDir->getPathname()), '/');
+    $depth = substr_count($fileinfo->getPath(), DIRECTORY_SEPARATOR) - substr_count($this->baseDir->getPathname(), DIRECTORY_SEPARATOR);
 
 
     if ($depth > $this->maxDepth)
     if ($depth > $this->maxDepth)
     {
     {