简体   繁体   English

通过自定义将文件上传到Web服务器

[英]Uploading a file to the webserver with customization

OK so I want to be able to upload a image to my webserver via PHP for the admin control panel. 好的,所以我希望能够通过PHP将图像上传到我的网络服务器,以用于管理控制面板。 Now, I want to be able to upload the image by using a file uploader, and use a textbox for the filename the image will be called. 现在,我希望能够使用文件上传器上传图像,并使用文本框作为将要调用图像的文件名。 Cheers :D 干杯:D

use a standard form in html 在html中使用标准格式

<form enctype="multipart/form-data" action="uploader.php" method="POST">
<input type="hidden" name="MAX_FILE_SIZE" value="100000" />
Filename: <input name="name" type="text" /> 
Choose a file to upload: <input name="uploadedfile" type="file" /><br />
<input type="submit" value="Upload File" />
</form>

then the uploader.php file: 然后是uploader.php文件:

//get the data from the form
$target_path = "uploads/";

$name= $_POST['name'];

$target_path = $target_path . $name;

//this is the script which uploads the file
if(move_uploaded_file($_FILES['uploadedfile']['tmp_name'], $target_path)) {
echo "The file ".  basename( $_FILES['uploadedfile']['name']). 
" has been uploaded as" . $name;
} else{
echo "There was an error uploading the file, please try again!";
}

you might want to check the file is an image .. to do so: 您可能要检查文件是否为图像..

$max_size=20000; //in kb
$allowedExts = array("gif", "jpeg", "jpg", "png");
$extension = end(explode(".", $_FILES["file"]["name"]));
if ((($_FILES["file"]["type"] == "image/gif")
|| ($_FILES["file"]["type"] == "image/jpeg")
|| ($_FILES["file"]["type"] == "image/jpg")
|| ($_FILES["file"]["type"] == "image/pjpeg")
|| ($_FILES["file"]["type"] == "image/x-png")
|| ($_FILES["file"]["type"] == "image/png"))
&& ($_FILES["file"]["size"] < $max_size)
&& in_array($extension, $allowedExts))
{

//here goes the script to upload the file!!

}else{
echo"The file is not supported";}

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM