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


PHP FileManager::copy方法代碼示例

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


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

示例1: getBrowscapClient

 /**
  * Get browscap client 
  * 
  * @return \phpbrowscap\Browscap
  */
 protected function getBrowscapClient()
 {
     require_once LC_DIR_LIB . 'Browscap.php';
     $cacheDir = LC_DIR_DATA . 'browscap';
     if (!file_exists($cacheDir)) {
         \Includes\Utils\FileManager::mkdirRecursive($cacheDir);
         \Includes\Utils\FileManager::copy($this->getBrowsCapPath(), $cacheDir . LC_DS . 'browscap.ini');
     }
     return new \phpbrowscap\Browscap($cacheDir);
 }
開發者ID:kewaunited,項目名稱:xcart,代碼行數:15,代碼來源:Request.php

示例2: loadFromLocalFile

 /**
  * Load from local file
  *
  * @param string $path     Absolute path
  * @param string $basename File name OPTIONAL
  *
  * @return boolean
  */
 public function loadFromLocalFile($path, $basename = null)
 {
     $result = true;
     $basename = $basename ?: basename($path);
     if (\Includes\Utils\FileManager::isExists($path)) {
         foreach ($this->getAllowedFileSystemRoots() as $root) {
             if (\Includes\Utils\FileManager::getRelativePath($path, $root)) {
                 $local = true;
                 break;
             }
         }
         if (empty($local)) {
             $newPath = \Includes\Utils\FileManager::getUniquePath($this->getStoreFileSystemRoot(), $basename);
             if (\Includes\Utils\FileManager::copy($path, $newPath)) {
                 $path = $newPath;
                 $this->setStorageType(static::STORAGE_RELATIVE);
             } else {
                 \XLite\Logger::getInstance()->log('\'' . $path . '\' file could not be copied to a new location \'' . $newPath . '\'.', LOG_ERR);
                 $result = false;
             }
         } else {
             $this->setStorageType(static::STORAGE_ABSOLUTE);
         }
     } else {
         $result = false;
     }
     if ($result && $basename) {
         $this->setFileName($basename);
     }
     return $result && $this->savePath($path);
 }
開發者ID:kewaunited,項目名稱:xcart,代碼行數:39,代碼來源:Storage.php

示例3: moveClassFile

 /**
  * Move/copy class file
  *
  * @param string $class New class name
  *
  * @return void
  */
 protected function moveClassFile($class)
 {
     if (!$this->isRoot() && !$this->isRoot($class)) {
         if ($this->getClass()) {
             \Includes\Utils\FileManager::move($this->getFile(), $this->getFile($class));
         } else {
             \Includes\Utils\FileManager::copy($this->getFile($class, LC_DIR_CLASSES), $this->getFile($class));
         }
     }
 }
開發者ID:kingsj,項目名稱:core,代碼行數:17,代碼來源:Classes.php


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