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


PHP Finder::type方法代碼示例

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


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

示例1: transformToIterable

function transformToIterable($finder)
{
    if (is_string($finder)) {
        if (file_exists($finder)) {
            return new FinderResult(array($finder), '.');
        }
        return Finder::type(Finder::TYPE_ANY)->name($finder)->in('.');
    } else {
        if ($finder instanceof Finder) {
            return $finder->in('.');
        } else {
            if (is_array($finder)) {
                return $finder;
            } else {
                if ($finder instanceof \IteratorAggregate) {
                    return $finder;
                }
            }
        }
    }
    throw new \InvalidArgumentException('Argument must be one of string, array or finder');
}
開發者ID:pago,項目名稱:pantr,代碼行數:22,代碼來源:functions.php

示例2: mirror

 /**
  * Mirrors a directory to another.
  *
  * @param string $originDir  The origin directory
  * @param string $targetDir  The target directory
  * @param Finder $finder     An Finder instance
  * @param array  $options    An array of options (see copy())
  */
 public function mirror($originDir, $targetDir, $finder = null, $options = array())
 {
     if (null === $finder) {
         $finder = Finder::type('any');
     }
     foreach ($finder->relative()->in($originDir) as $file) {
         if (is_dir($originDir . DIRECTORY_SEPARATOR . $file)) {
             $this->mkdirs($targetDir . DIRECTORY_SEPARATOR . $file);
         } else {
             if (is_file($originDir . DIRECTORY_SEPARATOR . $file)) {
                 $this->copy($originDir . DIRECTORY_SEPARATOR . $file, $targetDir . DIRECTORY_SEPARATOR . $file, $options);
             } else {
                 if (is_link($originDir . DIRECTORY_SEPARATOR . $file)) {
                     $this->symlink($originDir . DIRECTORY_SEPARATOR . $file, $targetDir . DIRECTORY_SEPARATOR . $file);
                 } else {
                     throw new \RuntimeException(sprintf('Unable to guess "%s" file type.', $file));
                 }
             }
         }
     }
 }
開發者ID:CodingFabian,項目名稱:symfony,代碼行數:29,代碼來源:Filesystem.php


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