本文整理汇总了PHP中dir::rmkdir方法的典型用法代码示例。如果您正苦于以下问题:PHP dir::rmkdir方法的具体用法?PHP dir::rmkdir怎么用?PHP dir::rmkdir使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类dir
的用法示例。
在下文中一共展示了dir::rmkdir方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: makeThumb
protected function makeThumb($file, $overwrite = true)
{
$gd = new gd($file);
// Drop files which are not GD handled images
if ($gd->init_error) {
return true;
}
$thumb = substr($file, strlen($this->config['uploadDir']));
$thumb = $this->config['uploadDir'] . "/" . $this->config['thumbsDir'] . "/" . $thumb;
$thumb = path::normalize($thumb);
$thumbDir = dirname($thumb);
if (!is_dir($thumbDir) && !dir::rmkdir($thumbDir, $this->config['dirPerms'])) {
return false;
}
if (!$overwrite && is_file($thumb)) {
return true;
}
// Images with smaller resolutions than thumbnails
if ($gd->get_width() <= $this->config['thumbWidth'] && $gd->get_height() <= $this->config['thumbHeight']) {
$browsable = array(IMAGETYPE_GIF, IMAGETYPE_JPEG, IMAGETYPE_JPEG2000, IMAGETYPE_PNG);
// Drop only browsable types
if (in_array($gd->type, $browsable)) {
return true;
}
// Resize image
} elseif (!$gd->resize_fit($this->config['thumbWidth'], $this->config['thumbHeight'])) {
return false;
}
// Save thumbnail
return $gd->imagejpeg($thumb, $this->config['jpegQuality']);
}