本文整理汇总了PHP中UniteFunctionsWPRev::getUrlUploads方法的典型用法代码示例。如果您正苦于以下问题:PHP UniteFunctionsWPRev::getUrlUploads方法的具体用法?PHP UniteFunctionsWPRev::getUrlUploads怎么用?PHP UniteFunctionsWPRev::getUrlUploads使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类UniteFunctionsWPRev
的用法示例。
在下文中一共展示了UniteFunctionsWPRev::getUrlUploads方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: process
public function process($url, $width = null, $height = null, $crop = null, $single = true, $upscale = false)
{
if (!$url || !$width && !$height) {
return false;
}
$upload_dir = UniteFunctionsWPRev::getUrlUploads();
$upload_url = uploads_url();
$http_prefix = "http://";
$https_prefix = "https://";
if (!strncmp($url, $https_prefix, strlen($https_prefix))) {
$upload_url = str_replace($http_prefix, $https_prefix, $upload_url);
} elseif (!strncmp($url, $http_prefix, strlen($http_prefix))) {
$upload_url = str_replace($https_prefix, $http_prefix, $upload_url);
}
if (false === strpos($url, $upload_url)) {
return false;
}
$rel_path = str_replace($upload_url, '', $url);
$img_path = $upload_dir . $rel_path;
if (!file_exists($img_path) or !getimagesize($img_path)) {
return false;
}
$info = pathinfo($img_path);
$ext = $info['extension'];
list($orig_w, $orig_h) = getimagesize($img_path);
$dims = image_resize_dimensions($orig_w, $orig_h, $width, $height, $crop);
$dst_w = $dims[4];
$dst_h = $dims[5];
if (!$dims && (null === $height && $orig_w == $width xor null === $width && $orig_h == $height xor $height == $orig_h && $width == $orig_w)) {
$img_url = $url;
$dst_w = $orig_w;
$dst_h = $orig_h;
} else {
$suffix = "{$dst_w}x{$dst_h}";
$dst_rel_path = str_replace('.' . $ext, '', $rel_path);
$destfilename = "{$upload_dir}{$dst_rel_path}-{$suffix}.{$ext}";
if (!$dims || true == $crop && false == $upscale && ($dst_w < $width || $dst_h < $height)) {
return false;
} elseif (file_exists($destfilename) && getimagesize($destfilename)) {
$img_url = "{$upload_url}{$dst_rel_path}-{$suffix}.{$ext}";
} else {
$editor = wp_get_image_editor($img_path);
if (is_wp_error($editor) || is_wp_error($editor->resize($width, $height, $crop))) {
return false;
}
$resized_file = $editor->save();
if (!is_wp_error($resized_file)) {
$resized_rel_path = str_replace($upload_dir, '', $resized_file['path']);
$img_url = $upload_url . $resized_rel_path;
} else {
return false;
}
}
}
if (true === $upscale) {
remove_filter('image_resize_dimensions', array($this, 'aq_upscale'));
}
if ($single) {
$image = $img_url;
} else {
$image = array(0 => $img_url, 1 => $dst_w, 2 => $dst_h);
}
return $image;
}