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


PHP Finder::notContains方法代碼示例

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


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

示例1: findDefinitionFileByRegex

 /**
  * @param $type
  * @param $name
  *
  * @return PhpFileInfo|null
  */
 protected function findDefinitionFileByRegex($type, $name)
 {
     $namespaceParts = explode('\\', $name);
     $definition = sprintf('%s %s[;\\{\\s]', $type, array_pop($namespaceParts));
     if (count($namespaceParts) > 0) {
         $namespace = sprintf('namespace %s', implode('\\\\', $namespaceParts));
     } else {
         $namespace = '';
     }
     $files = new Finder();
     $files->name('*.php')->contains(sprintf('/%s.*%s/s', $namespace, $definition))->in($this->sourcePaths);
     if (!$namespace) {
         $files->notContains('/namespace\\s[^;]+/');
     }
     $file = current(iterator_to_array($files));
     if (!$file instanceof SplFileInfo) {
         return;
     }
     $baseFile = PhpFileInfo::create($file);
     return $this->usageParser->parseFile($baseFile);
 }
開發者ID:Soullivaneuh,項目名稱:deprecation-detector,代碼行數:27,代碼來源:AncestorResolver.php

示例2: createFinder

 /**
  * @param  InputInterface $input
  * @return Finder
  */
 public function createFinder(InputInterface $input)
 {
     $finder = new Finder();
     $finder->files();
     foreach ($input->getArgument('directory') as $dir) {
         $finder->in($dir);
     }
     foreach ($input->getOption('not-dir') as $ignoreDir) {
         $finder->exclude($ignoreDir);
     }
     foreach ($input->getOption('file-name') as $pattern) {
         $finder->name($pattern);
     }
     foreach ($input->getOption('not-file-name') as $pattern) {
         $finder->notName($pattern);
     }
     foreach ($input->getOption('contains') as $pattern) {
         $finder->contains($pattern);
     }
     foreach ($input->getOption('not-contains') as $pattern) {
         $finder->notContains($pattern);
     }
     foreach ($input->getOption('path') as $pattern) {
         $finder->path($pattern);
     }
     foreach ($input->getOption('not-path') as $pattern) {
         $finder->notPath($pattern);
     }
     if ($size = $input->getOption('size')) {
         $finder->size($size);
     }
     if ($modified = $input->getOption('modified')) {
         $finder->date($modified);
     }
     if ($depth = $input->getOption('depth')) {
         $finder->depth($depth);
     }
     return $finder;
 }
開發者ID:hanneskod,項目名稱:phpfind,代碼行數:43,代碼來源:Command.php

示例3: notContains

 /**
  * @return Finder
  */
 public function notContains($pattern)
 {
     return parent::notContains($pattern);
 }
開發者ID:stopsopa,項目名稱:utils,代碼行數:7,代碼來源:Finder.php


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