我在创建 php 文件上传脚本时遇到问题:
索引.php:
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
<title>File Upload</title>
</head>
<body>
<form method="post" action="upload_file.php" enctype="multipart/form-data">
<label for="file"><h3>File: </h3> </label>
<input type="file" name="file" id="file" /><br />
<input type="submit" name="Upload" />
</form>
</body>
</html>
上传文件.php:
<?php
$restricted_extensions = array("htm", "html", "php", "asp", "aspx", "js");
$file_extension = end(explode(".", $_FILES["file"]["name"]));
if ($_FILES["file"]["error"] > 0)
{
echo("<h2>An error occured!</h2>");
echo("<h2>Return Code: " . $_FILES["file"]["error"] . "</h2><br>");
}
elseif ($_FILES["file"]["error"] == 0)
{
$is_valid_extension = true;
foreach ($restricted_extension as $extension => $value)
{
if ($file_extension == $extension)
{
$is_valid_extension == false;
}
if (!$is_valid_extension)
{
echo("<h2>The files extension " . $file_extension . " is not allowed!</h2>");
}
}
}
else
{
echo "Upload: " . $_FILES["file"]["name"] . "<br>";
echo "Type: " . $_FILES["file"]["type"] . "<br>";
echo "Size: " . ($_FILES["file"]["size"] / 1024) . " kB<br>";
echo "Temp file: " . $_FILES["file"]["tmp_name"] . "<br>";
if (file_exists("upload/" . $_FILES["file"]["name"]))
{
echo $_FILES["file"]["name"] . " already exists. ";
}
else
{
move_uploaded_file($_FILES["file"]["tmp_name"],
"upload/" . $_FILES["file"]["name"]);
echo "Stored in: " . "upload/" . $_FILES["file"]["name"];
}
}
?>
错误信息:
注意:未定义索引:第 3 行 C:\inetpub\wwwroot\upload_file.php 中的文件
严格的标准:只有变量应该在第 3 行的 C:\inetpub\wwwroot\upload_file.php 中通过引用传递
注意:未定义索引:第 5 行 C:\inetpub\wwwroot\upload_file.php 中的文件
注意:未定义的索引:第 10 行 C:\inetpub\wwwroot\upload_file.php 中的文件
注意:未定义的变量:第 15 行 C:\inetpub\wwwroot\upload_file.php 中的受限扩展
警告:在第 15 行的 C:\inetpub\wwwroot\upload_file.php 中为 foreach() 提供的参数无效