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


PHP Util::getSeparator方法代碼示例

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


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

示例1: getFileList

 /**
  * Get a list of files in specified directory
  *
  * @param string $path string - Folder path, Ex. myfolder
  * @param bool | int $recursively - Find files in subfolders
  * @param string $filter - Filter for files. Use regular expression, Ex. \.json$
  * @param bool $onlyFileType [null, true, false] - Filter for type of files/directories. If TRUE - returns only file list, if FALSE - only directory list
  * @param bool $isReturnSingleArray - if need to return a single array of file list
  *
  * @return array
  */
 public function getFileList($path, $recursively = false, $filter = '', $onlyFileType = null, $isReturnSingleArray = false)
 {
     $path = $this->concatPaths($path);
     $result = array();
     if (!file_exists($path) || !is_dir($path)) {
         return $result;
     }
     $cdir = scandir($path);
     foreach ($cdir as $key => $value) {
         if (!in_array($value, array(".", ".."))) {
             $add = false;
             if (is_dir($path . Utils\Util::getSeparator() . $value)) {
                 if ($recursively || is_int($recursively) && $recursively != 0) {
                     $nextRecursively = is_int($recursively) ? $recursively - 1 : $recursively;
                     $result[$value] = $this->getFileList($path . Utils\Util::getSeparator() . $value, $nextRecursively, $filter, $onlyFileType);
                 } else {
                     if (!isset($onlyFileType) || !$onlyFileType) {
                         /*save only directories*/
                         $add = true;
                     }
                 }
             } else {
                 if (!isset($onlyFileType) || $onlyFileType) {
                     /*save only files*/
                     $add = true;
                 }
             }
             if ($add) {
                 if (!empty($filter)) {
                     if (preg_match('/' . $filter . '/i', $value)) {
                         $result[] = $value;
                     }
                 } else {
                     $result[] = $value;
                 }
             }
         }
     }
     if ($isReturnSingleArray) {
         return $this->getSingeFileList($result, $onlyFileType);
     }
     return $result;
 }
開發者ID:mehulsbhatt,項目名稱:espocrm,代碼行數:54,代碼來源:Manager.php

示例2: getFileList

 /**
  * Get a list of files in specified directory
  *
  * @param string $path string - Folder path, Ex. myfolder
  * @param bool | int $recursively - Find files in subfolders
  * @param string $filter - Filter for files. Use regular expression, Ex. \.json$
  * @param string $fileType [all, file, dir] - Filter for type of files/directories.
  * @param bool $isReturnSingleArray - if need to return a single array of file list
  *
  * @return array
  */
 public function getFileList($path, $recursively = false, $filter = '', $fileType = 'all', $isReturnSingleArray = false)
 {
     if (!file_exists($path)) {
         return false;
     }
     $result = array();
     $cdir = scandir($path);
     foreach ($cdir as $key => $value) {
         if (!in_array($value, array(".", ".."))) {
             $add = false;
             if (is_dir($path . Utils\Util::getSeparator() . $value)) {
                 if ($recursively || is_int($recursively) && $recursively != 0) {
                     $nextRecursively = is_int($recursively) ? $recursively - 1 : $recursively;
                     $result[$value] = $this->getFileList($path . Utils\Util::getSeparator() . $value, $nextRecursively, $filter, $fileType);
                 } else {
                     if (in_array($fileType, array('all', 'dir'))) {
                         $add = true;
                     }
                 }
             } else {
                 if (in_array($fileType, array('all', 'file'))) {
                     $add = true;
                 }
             }
             if ($add) {
                 if (!empty($filter)) {
                     if (preg_match('/' . $filter . '/i', $value)) {
                         $result[] = $value;
                     }
                 } else {
                     $result[] = $value;
                 }
             }
         }
     }
     if ($isReturnSingleArray) {
         return $this->getSingeFileList($result);
     }
     return $result;
 }
開發者ID:lucasmattos,項目名稱:crm,代碼行數:51,代碼來源:Manager.php

示例3: testGetSeparator

 public function testGetSeparator()
 {
     $this->assertEquals(DIRECTORY_SEPARATOR, Util::getSeparator());
 }
開發者ID:naushrambo,項目名稱:espocrm,代碼行數:4,代碼來源:UtilTest.php

示例4: chgrpRecurse

 /**
  * Change group permission recursive
  *
  * @param string $filename
  * @param int $fileOctal - ex. 0644
  * @param int $dirOctal - ex. 0755
  *
  * @return bool
  */
 protected function chgrpRecurse($path, $group)
 {
     if (!file_exists($path)) {
         return false;
     }
     if (!is_dir($path)) {
         return $this->chgrpReal($path, $group);
     }
     $result = $this->chgrpReal($path, $group);
     $allFiles = $this->getFileManager()->getFileList($path);
     foreach ($allFiles as $item) {
         $result &= $this->chgrpRecurse($path . Utils\Util::getSeparator() . $item, $group);
     }
     return (bool) $result;
 }
開發者ID:naushrambo,項目名稱:espocrm,代碼行數:24,代碼來源:Permission.php


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