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


PHP FileManager::prepareDir方法代码示例

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


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

示例1: moveFile

 /**
  * Move file to the other path.
  *
  * @access     public
  * @param    string $sPath
  * @return    File
  * @since      2.36.4-dev, 2015-07-03
  * @version    2.37.0-dev, 2015-07-28
  */
 public function moveFile($sPath)
 {
     \FileManager::prepareDir($sPath);
     $oFileManager = new \FileManager();
     $oFileManager->prepareFileByPath($this->getPath() . '/' . $this->getNameWithExt());
     $oFileManager->move($sPath);
     $this->setName($oFileManager->getName());
     // if file name was changed in \FileManager class
     $this->setPath($oFileManager->getPath());
     return $this;
 }
开发者ID:ktrzos,项目名称:plethora,代码行数:20,代码来源:File.php

示例2: save

 /**
  * Save the image in given path.
  *
  * @access	public
  * @param	string	$sPath		path
  * @param	integer	$iQuality	only if jpg/jpeg
  * @return	\Image
  * @since	1.0.0
  * @version	1.1.7, 2014-07-15
  */
 public function save($sPath, $iQuality = 100)
 {
     $sPath = str_replace('/', DIRECTORY_SEPARATOR, $sPath);
     $aExplodedPath = explode('.', $sPath);
     $iType = static::extensionToImageType(end($aExplodedPath));
     if (\FileManager::prepareDir($sPath, TRUE) === FALSE) {
         throw new \Plethora\Exception\Fatal('Can\'t create particular path ("' . $sPath . '").');
     }
     switch ($iType) {
         case self::PNG:
             imagepng($this->rImage, $sPath);
             break;
         case self::JPEG:
             imagejpeg($this->rImage, $sPath, $iQuality);
             break;
         case self::GIF:
             imagegif($this->rImage, $sPath);
             break;
         case self::GD:
             imagegd($this->rImage, $sPath);
             break;
         case self::GD2:
             imagegd2($this->rImage, $sPath);
             break;
     }
     return $this;
 }
开发者ID:ktrzos,项目名称:plethora,代码行数:37,代码来源:Image.php


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