本文整理汇总了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;
}
示例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;
}