php tutorial Get upload file type Get file suffix This tutorial provides three ways to get upload files and image types, the method is very simple The first two types is defined first, and then in_array judgment, the last step is to use fopen read the first two bytes, determine. * /
// Get the image format, including jpg, png, gif function get_type ($ img_name) // Get the image file type { if (preg_match ("/. (jpg | jpeg | gif | png | bmp) $ / i", $ img_name, $ matches)) { $ type = strtolower ($ matches [1]); } else { $ type = "string"; } return $ type; }
/ / Determine the type of file upload $ allowedextensions = array ("txt", "csv", "htm", "html", "xml", "css tutorial", "doc", "xls", "rtf", "ppt", "pdf", "swf", "flv", "avi" "wmv", "mov", "jpg", "jpeg", "gif", "png"); foreach ($ _files as $ file) { if ($ file ['tmp_name']> '') { if (! in_array (end (explode (".", strtolower ($ file ['name']))), $ allowedextensions)) { die ($ file ['name']. 'is an invalid file type!' '<a href="############# '& lt; & lt go back back </a>'); } } }
The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion;
products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the
content of the page makes you feel confusing, please write us an email, we will handle the problem
within 5 days after receiving your email.
If you find any instances of plagiarism from the community, please send an email to:
info-contact@alibabacloud.com
and provide relevant evidence. A staff member will contact you within 5 working days.