热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

PHP实现无刷新多图上传及远程图片处理

本文详细介绍了如何使用PHP实现网页上的无刷新多图上传功能,同时支持远程图片的下载与处理。文章提供了具体的代码示例,并对关键函数进行了说明。

本文将介绍如何在 PHP 中实现无刷新的多图上传功能,同时支持远程图片的下载和处理。我们将通过一个示例来展示整个过程。

1. 上传页面(upload.php)




选择图片:





2. 处理上传的 PHP 脚本(upload_handler.php)

class ImageUploader {
private $directory;
private $allowedExtensiOns= ['jpg', 'jpeg', 'png', 'gif'];
private $errors = [];
private $uploadedFiles = [];

public function __construct($directory) {
$this->directory = $directory;
if (!is_dir($directory)) {
mkdir($directory, 0777, true);
}
}

public function uploadFiles($files) {
foreach ($files['file']['name'] as $key => $name) {
$tmpName = $files['file']['tmp_name'][$key];
$size = $files['file']['size'][$key];
$error = $files['file']['error'][$key];
$extension = strtolower(pathinfo($name, PATHINFO_EXTENSION));

if (!in_array($extension, $this->allowedExtensions)) {
$this->errors[] = "不允许的文件类型: $name";
continue;
}

if ($error !== UPLOAD_ERR_OK) {
$this->errors[] = "上传错误: $name";
continue;
}

$newName = uniqid() . '.' . $extension;
$destination = $this->directory . '/' . $newName;

if (move_uploaded_file($tmpName, $destination)) {
chmod($destination, 0777);
$this->uploadedFiles[] = $newName;
} else {
$this->errors[] = "移动文件失败: $name";
}
}
}

public function grabRemoteImage($url) {
$extension = pathinfo($url, PATHINFO_EXTENSION);
if (!in_array($extension, $this->allowedExtensions)) {
$this->errors[] = "不允许的文件类型: $url";
return;
}

$newName = uniqid() . '.' . $extension;
$destination = $this->directory . '/' . $newName;

$imageData = file_get_contents($url);
if (file_put_contents($destination, $imageData) !== false) {
chmod($destination, 0777);
$this->uploadedFiles[] = $newName;
} else {
$this->errors[] = "保存远程图片失败: $url";
}
}

public function createThumbnail($source, $destination, $width, $height) {
list($originalWidth, $originalHeight, $type) = getimagesize($source);
switch ($type) {
case IMAGETYPE_GIF:
$image = imagecreatefromgif($source);
break;
case IMAGETYPE_JPEG:
$image = imagecreatefromjpeg($source);
break;
case IMAGETYPE_PNG:
$image = imagecreatefrompng($source);
break;
default:
$this->errors[] = "不支持的图片类型: $source";
return;
}

$thumbnail = imagecreatetruecolor($width, $height);
imagecopyresampled($thumbnail, $image, 0, 0, 0, 0, $width, $height, $originalWidth, $originalHeight);
imagejpeg($thumbnail, $destination);
imagedestroy($thumbnail);
imagedestroy($image);
}

public function getErrors() {
return $this->errors;
}

public function getUploadedFiles() {
return $this->uploadedFiles;
}
}

$uploader = new ImageUploader('uploads');
if (isset($_FILES['file'])) {
$uploader->uploadFiles($_FILES);
} elseif (isset($_POST['url'])) {
$uploader->grabRemoteImage($_POST['url']);
}

foreach ($uploader->getUploadedFiles() as $file) {
$uploader->createThumbnail('uploads/' . $file, 'thumbnails/' . $file, 150, 150);
}

$respOnse= [
'error' => count($uploader->getErrors()) > 0,
'message' => implode('
', $uploader->getErrors()),
'files' => $uploader->getUploadedFiles()
];
echo json_encode($response);
?>

以上代码展示了如何实现无刷新多图上传和远程图片下载的功能。通过 `upload.php` 页面,用户可以选择多个图片进行上传,上传过程通过隐藏的 iframe 实现无刷新效果。`upload_handler.php` 脚本负责处理上传的文件,包括验证文件类型、移动文件到目标目录、创建缩略图等操作。


推荐阅读
  • PHP 5.2.5 安装与配置指南
    本文详细介绍了 PHP 5.2.5 的安装和配置步骤,帮助开发者解决常见的环境配置问题,特别是上传图片时遇到的错误。通过本教程,您可以顺利搭建并优化 PHP 运行环境。 ... [详细]
  • 本文详细介绍了如何解决Uploadify插件在Internet Explorer(IE)9和10版本中遇到的点击失效及JQuery运行时错误问题。通过修改相关JavaScript代码,确保上传功能在不同浏览器环境中的一致性和稳定性。 ... [详细]
  • 前言--页数多了以后需要指定到某一页(只做了功能,样式没有细调)html ... [详细]
  • 本文介绍了如何使用PHP代码实现微信平台的媒体素材上传功能,详细解释了API接口的使用方法和注意事项,确保文件路径正确以避免常见的错误。 ... [详细]
  • [论文笔记] Crowdsourcing Translation: Professional Quality from Non-Professionals (ACL, 2011)
    Time:4hoursTimespan:Apr15–May3,2012OmarZaidan,ChrisCallison-Burch:CrowdsourcingTra ... [详细]
  • 本文介绍了如何利用JavaScript或jQuery来判断网页中的文本框是否处于焦点状态,以及如何检测鼠标是否悬停在指定的HTML元素上。 ... [详细]
  • 导航栏样式练习:项目实例解析
    本文详细介绍了如何创建一个具有动态效果的导航栏,包括HTML、CSS和JavaScript代码的实现,并附有详细的说明和效果图。 ... [详细]
  • 1:有如下一段程序:packagea.b.c;publicclassTest{privatestaticinti0;publicintgetNext(){return ... [详细]
  • 本文详细介绍了如何在Linux系统上安装和配置Smokeping,以实现对网络链路质量的实时监控。通过详细的步骤和必要的依赖包安装,确保用户能够顺利完成部署并优化其网络性能监控。 ... [详细]
  • 深入理解Tornado模板系统
    本文详细介绍了Tornado框架中模板系统的使用方法。Tornado自带的轻量级、高效且灵活的模板语言位于tornado.template模块,支持嵌入Python代码片段,帮助开发者快速构建动态网页。 ... [详细]
  • 1.如何在运行状态查看源代码?查看函数的源代码,我们通常会使用IDE来完成。比如在PyCharm中,你可以Ctrl+鼠标点击进入函数的源代码。那如果没有IDE呢?当我们想使用一个函 ... [详细]
  • 深入理解Cookie与Session会话管理
    本文详细介绍了如何通过HTTP响应和请求处理浏览器的Cookie信息,以及如何创建、设置和管理Cookie。同时探讨了会话跟踪技术中的Session机制,解释其原理及应用场景。 ... [详细]
  • 本文详细介绍了如何使用 Yii2 的 GridView 组件在列表页面实现数据的直接编辑功能。通过具体的代码示例和步骤,帮助开发者快速掌握这一实用技巧。 ... [详细]
  • 解决PHP与MySQL连接时出现500错误的方法
    本文详细探讨了当使用PHP连接MySQL数据库时遇到500内部服务器错误的多种解决方案,提供了详尽的操作步骤和专业建议。无论是初学者还是有经验的开发者,都能从中受益。 ... [详细]
  • Python自动化处理:从Word文档提取内容并生成带水印的PDF
    本文介绍如何利用Python实现从特定网站下载Word文档,去除水印并添加自定义水印,最终将文档转换为PDF格式。该方法适用于批量处理和自动化需求。 ... [详细]
author-avatar
Andrew_Chaoyen_liu_328
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有