php 上传文件出现无法移动的问题

2025-01-01 05:27:52
推荐回答(1个)
回答1:

从你的代码来看,这段有错
move_uploaded_file( $this->file[tmp_name] , "/" . $this->uploadPath . "/" . $this->fileName )

正确的代码应该为(加一个ROOT路径)
move_uploaded_file( $this->file[tmp_name] ,ROOT. "/" . $this->uploadPath . "/" . $this->fileName )