Home  >  Article  >  Backend Development  >  Simple sample code for uploading and deleting images in PHP

Simple sample code for uploading and deleting images in PHP

WBOY
WBOYOriginal
2016-07-25 08:55:421286browse
  1. if (!empty($_FILES["img"]["name"])) { //Extract the file domain content name and determine
  2. $path="uppic/"; / /Upload path
  3. if(!file_exists($path))
  4. {
  5. //Check whether the folder exists, if not, create it and give it the highest permissions
  6. mkdir(“$path”, 0700);
  7. }//END IF
  8. //File formats allowed to be uploaded
  9. $tp = array("image/gif","image/pjpeg","image/jpeg");
  10. //Check whether the uploaded file is of the type allowed to be uploaded
  11. if(! in_array($_FILES["img"]["type"],$tp))
  12. {
  13. echo "<script>alert('wrong format');history.go(-1);</script>" ;
  14. exit;
  15. }//END IF
  16. $filetype = $_FILES['img']['type'];
  17. if($filetype == 'image/jpeg'){
  18. $type = '.jpg';
  19. }
  20. if ($filetype == 'image/jpg') {
  21. $type = '.jpg';
  22. }
  23. if ($filetype == 'image/pjpeg') {
  24. $type = '.jpg';
  25. }
  26. if($filetype == 'image/gif'){
  27. $type = '.gif';
  28. }
  29. if($_FILES["img"]["name"])
  30. {
  31. $today=date ("YmdHis"); //Get the time and assign it to the variable
  32. $file2 = $path.$today.$type; //The full path of the picture
  33. $img = $today.$type; //The name of the picture
  34. $flag =1;
  35. }//END IF
  36. if($flag) $result=move_uploaded_file($_FILES["img"]["tmp_name"],$file2);
  37. //Note that the first value passed to move_uploaded_file here The first parameter is a temporary file uploaded to the server
  38. }//END IF
  39. //Here, the value of $img is written to the corresponding field in the database
Copy code

2, php delete image:

  1. unlink(“uppic/”.$img); //unlink method to delete files
Copy code

>>>> Articles you may be interested in: php code to delete records and delete image files at the same time php delete uploaded pictures and folders (example sharing) Small example of PHP deleting all files created N minutes ago Example of how to delete a directory and all files in php An example of php code to delete all files in a directory N days ago PHP implementation code to delete records and refresh the current page at the same time Delete the php code of all files in the specified folder Simple example of uploading and deleting images in php A function written in php to delete a directory php code for recursively creating and deleting folders php custom function rrmdir to recursively delete directories and files Example of php recursively deleting directories



Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn