move_uploaded_file一直报错
1、服务器WAMPserver,编辑器VScode
<?php
header("Content-Type:text/html; charset=utf-8");
$fileinfo=$_FILES["upfile"];
$filename=$fileinfo["name"];
$filepath=$fileinfo["tmp_name"];
$a="D:\phpstudy_pro\WWW\new\basic\source\\";
move_uploaded_file($filepath,$a.$filename);
?>
2、服务器PHPstudy 编辑器notepad++
<?php
header("Content-Type:text/html; charset=utf-8");
$fileinfo=$_FILES["upfile"];
$filename=$fileinfo["name"];
$filepath=$fileinfo["tmp_name"];
$a="D:\phpstudy_pro\WWW\B\SOURCE\\";
move_uploaded_file($filepath,$a.$filename);
?>
上传文件移动成功
3、move_uploaded_file(); 文件的写法
运行成功的
$a="D:\phpstudy_pro\WWW\B\SOURCE\\";
move_uploaded_file($filepath,$a.$filename);
运行失败的
1、move_uploaded_file($filepath,destination:"/source/".$filename);
2、move_uploaded_file($filepath,"D:\phpstudy_pro\WWW\B\SOURCE\\");