在一个 php 文件中,我创建了一种上传形式,并通过 ajax 调用另一个 php 来上传照片。我将 name="file" 传递给第二个 php,这意味着我有一个字符串,它是照片的路径和名称,例如 ("C:\fakepath\xxx.JPG"),然后我把这个字符串放在一个变量中,如下所示:
$file="第一个 php 中来自上传表单的字符串"; 然后,$_FILES["$file"]
或 $_FILES[$file]
,$_FILES['$file']
总是返回我一个错误,如:
Notice: Undefined index: C:\fakepath\xxx.JPG in C:\xampp\htdocs\project\ajax_php_files\PHPfile.php on line 111
上传表单(第一个 PHP)
echo"
<form action='#' method='post' enctype='multipart/form-data' name='form1' id='form1'>
<label for='file'>Filename:</label>
<input type='file' name='file' id='file'><br>
<input name='submit' type='button' id='submit' value='upload' onclick=\"SubmitData1('file')\" />
</form>";
ajax函数:
function SubmitData1(id1){
var file=document.getElementById(id1).value;
//var file=String(file);
alert(file);
if (window.XMLHttpRequest)
{// code for IE7+, Firefox, Chrome, Opera, Safari
xmlhttp=new XMLHttpRequest();
}
else
{// code for IE6, IE5
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.onreadystatechange=function()
{
if (xmlhttp.readyState==4 && xmlhttp.status==200)
{
document.getElementById("ContextPart").innerHTML=xmlhttp.responseText;
}
}
xmlhttp.open("GET","ajax_php_files/upload_file3.php?file="+file,true);
xmlhttp.send();
}
第二个 php (upload_file3.php):
<?php
//$allowedExts = array("jpg", "jpeg", "gif", "png");
//$extension = end(explode(".", $_FILES["file"]["name"]));
$file=$_GET["file"];
// here, the variable $file is a string like:C:\fakepath\fit1.JPG
//$file="C:\Picture\Amir\fit1.JPG";
echo $file;
if ((($_FILES["file (or $file or '$file' or what?!!)"]["type"] == "image/gif")
|| ($_FILES["file"]["type"] == "image/jpeg")
|| ($_FILES["file"]["type"] == "image/png")
|| ($_FILES["file"]["type"] == "image/jpg")
|| ($_FILES["file"]["type"] == "image/pjpeg"))
&& ($_FILES["file"]["size"] < 10000000))
//&& in_array($extension, $allowedExts))
{
if ($_FILES["file"]["error"] > 0)
{
echo "Return Code: " . $_FILES["file"]["error"] . "<br>";
}
else
等等。 ...
有什么帮助吗?