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


PHP StringHelper::MaskCheck方法代码示例

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


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

示例1: GetFiles

 public static function GetFiles($directory, $ignoreFiles = null, $ignoreMasks = null)
 {
     if (!is_dir($directory)) {
         return false;
     }
     $items = new \RecursiveDirectoryIterator($directory);
     $files = array();
     foreach (new \RecursiveIteratorIterator($items) as $filename => $current) {
         if (!is_dir($filename) && !in_array($current->GetFileName(), $ignoreFiles) && !\StringHelper::MaskCheck($filename, $ignoreMasks)) {
             $files[] = $filename;
         }
     }
     return $files;
 }
开发者ID:dotBunny,项目名称:Blueprint,代码行数:14,代码来源:core.php

示例2: ProcessSiteFolder

 private function ProcessSiteFolder($source, $dest, $folderPermissions, $filePermissions, $ignoreFiles = null, $ignoreMasks = null)
 {
     // Check for symlinks
     if (is_link($source)) {
         // No support for symlinks
         return true;
         //            return symlink(readlink($source), $dest);
     }
     // If it truly is a file
     if (is_file($source)) {
         // Check file is a Blueprint, ignore if it is and add it to the views, else copy it.
         $check = strpos(file_get_contents($source), TAG_START . TAG_BLUEPRINT);
         if ($check !== false) {
             $this->views[] = new View($this, $source);
             return true;
         }
         // Is this file a compress-ible file?
         if ($this->getGlobalCompression()) {
             // Copy / Return the already minimized versions of libraries
             if (strpos($source, ".min.") || strpos($source, "-min.")) {
                 Core::Output(INFO, "Not Compressing " . $source);
                 return copy($source, $dest);
             }
             switch (strtolower(pathinfo($dest, PATHINFO_EXTENSION))) {
                 case 'js':
                     $minifier = new Minify\JS($source);
                     Core::Output(INFO, "Compressing " . $source);
                     return file_put_contents($dest, $minifier->minify());
                 case 'css':
                     $minifier = new Minify\CSS($source);
                     Core::Output(INFO, "Compressing " . $source);
                     return file_put_contents($dest, $minifier->minify());
                 default:
                     return copy($source, $dest);
             }
         } else {
             return copy($source, $dest);
         }
     }
     // Make destination directory
     if (!is_dir($dest)) {
         mkdir($dest, $folderPermissions, true);
     }
     // Loop through the folder
     $dir = dir($source);
     while (false !== ($entry = $dir->read())) {
         // Skip pointers
         if ($entry == '.' || $entry == '..' || in_array($entry, $ignoreFiles) || \StringHelper::MaskCheck($entry, $ignoreMasks)) {
             continue;
         }
         // Deep copy directories
         $this->ProcessSiteFolder("{$source}/{$entry}", "{$dest}/{$entry}", $folderPermissions, $filePermissions, $ignoreFiles, $ignoreMasks);
     }
     // Clean up
     $dir->close();
     return true;
 }
开发者ID:dotBunny,项目名称:Blueprint,代码行数:57,代码来源:project.php


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