当前位置:首页 > PHP教程 > php上传下载 > 列表

使用PHP实现图片上传接口的实例代码

发布:smiling 来源: PHP粉丝网  添加日期:2024-04-28 15:04:06 浏览: 评论:0 

在Web开发中,图片上传是一个常见的功能。无论是用户头像的上传,还是内容的图片插入,都需要使用到图片上传的功能。在这篇文章中,我们将详细介绍如何使用PHP实现图片上传接口。

环境准备

首先,我们需要一个运行PHP的环境。这里我们使用的是XAMPP,它是一个包含了Apache、MySQL、PHP和Perl的开源Web应用服务器。

创建数据库

我们需要一个数据库来存储上传的图片信息。这里我们使用MySQL数据库,创建一个名为images的数据库,并在其中创建一个名为image_info的表,用于存储图片的信息。

  1. CREATE DATABASE images; 
  2. USE images; 
  3. CREATE TABLE image_info ( 
  4.     id INT AUTO_INCREMENT PRIMARY KEY
  5.     name VARCHAR(255) NOT NULL
  6.     path VARCHAR(255) NOT NULL
  7.     type VARCHAR(255) NOT NULL
  8.     size INT NOT NULL
  9.     upload_time TIMESTAMP DEFAULT CURRENT_TIMESTAMP 
  10. ); 

创建图片上传接口

接下来,我们创建一个PHP文件,名为upload.php,用于处理图片的上传。

  1. <?php 
  2. $target_dir = "uploads/"
  3. $target_file = $target_dir . basename($_FILES["fileToUpload"]["name"]); 
  4. $uploadOk = 1; 
  5. $imageFileType = strtolower(pathinfo($target_file,PATHINFO_EXTENSION)); 
  6.  
  7. // Check if image file is a actual image or fake image 
  8. if(isset($_POST["submit"])) { 
  9.     $check = getimagesize($_FILES["fileToUpload"]["tmp_name"]); 
  10.     if($check !== false) { 
  11.         echo "File is an image - " . $check["mime"] . "."
  12.         $uploadOk = 1; 
  13.     } else { 
  14.         echo "File is not an image."
  15.         $uploadOk = 0; 
  16.     } 
  17.  
  18. // Check if file already exists 
  19. if (file_exists($target_file)) { 
  20.     echo "Sorry, file already exists."
  21.     $uploadOk = 0; 
  22.  
  23. // Check file size 
  24. if ($_FILES["fileToUpload"]["size"] > 500000) { 
  25.     echo "Sorry, your file is too large."
  26.     $uploadOk = 0; 
  27.  
  28. // Allow certain file formats 
  29. if($imageFileType != "jpg" && $imageFileType != "png" && $imageFileType != "jpeg" 
  30. && $imageFileType != "gif" ) { 
  31.     echo "Sorry, only JPG, JPEG, PNG & GIF files are allowed."
  32.     $uploadOk = 0; 
  33.  
  34. // Check if $uploadOk is set to 0 by an error 
  35. if ($uploadOk == 0) { 
  36.     echo "Sorry, your file was not uploaded."
  37. // if everything is ok, try to upload file 
  38. else { 
  39.     if (move_uploaded_file($_FILES["fileToUpload"]["tmp_name"], $target_file)) { 
  40.         echo "The file ". htmlspecialchars( basename$_FILES["fileToUpload"]["name"])). " has been uploaded."
  41.     } else { 
  42.         echo "Sorry, there was an error uploading your file."
  43.     } 
  44. ?> 

测试图片上传接口

最后,我们可以创建一个HTML文件,包含一个表单,用于上传图片。当我们选择一张图片并点击提交按钮时,我们的图片上传接口就会被调用。

  1. <!DOCTYPE html> 
  2. <html> 
  3. <body> 
  4.  
  5. <form action="upload.php" method="post" enctype="multipart/form-data"> 
  6.     Select image to upload: 
  7.     <input type="file" name="fileToUpload" id="fileToUpload"> 
  8.     <input type="submit" value="Upload Image" name="submit"> 
  9. </form> 
  10.  
  11. </body> 
  12. </html>

Tags: PHP图片上传接口

分享到: