我有一个名为“Mobile_App”的文件夹,该文件夹中有一个 html 页面,其中包含一个文件输入、一个上传文件的 php 脚本和一个名为“ImageFiles”的文件夹。
问题是文件没有上传到“ImageFiles”中。我想知道的是,在将文件上传到“Imagefiles”文件夹时,下面的代码是正确的,还是不正确,我怎样才能让它正常工作?
下面是上传文件的 php 脚本(文件输入称为“fileImage”):
<?php
$destination_path = $_SERVER['DOCUMENT_ROOT']."/ImageFiles";
$result = 0;
$target_path = $destination_path . basename( $_FILES['fileImage']['name']);
if(move_uploaded_file($_FILES['fileImage']['tmp_name'], $target_path)) {
$result = 1;
}
sleep(1);
?>