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

时间:2013-06-01 11:19:54

标签: php html file web upload

好的,所以我希望能够通过PHP为管理员控制面板将图像上传到我的网络服务器。 现在,我希望能够使用文件上传器上传图像,并使用文本框作为文件名,将调用图像。干杯:D

1 个答案:

答案 0 :(得分:1)

在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>

然后是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!";
}

你可能想检查文件是图像..这样做:

$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";}