move_uploaded_file php函数不能正常工作

时间:2016-08-08 10:55:39

标签: php file-upload image-upload

我非常清楚在这个网站上多次回答类似的问题。我google并搜索了许多论坛,但我无法解决问题。

move_uploaded_file函数不起作用,此函数由于适当的路径无法上传文件。

这是我的代码

$targetPath = "/home/abc/public_html/uploads/";

        let my website is abc.com

        move_uploaded_file($_FILES['Filedata']['tmp_name'],$targetPath.$_FILES['Filedata']['name']);
  • 我必须在/public_html/uploads/downloads
  • 上传文件
  • move_uploaded_file函数位于/public_html/assets/uploadify
  • 输入表单在 /public_html/application/modules/downloads/views/admin位置

注意:此代码在我的localhost

中正常运行

任何人都可以建议路径

Plz dnt mark dublicate

1 个答案:

答案 0 :(得分:0)

假设您的上传文件位于public_html目录中,请将$ targetPath更改为/uploads/并更改

move_uploaded_file($_FILES['Filedata']['tmp_name'],"$targetPath".$_FILES['Filedata']['name']);

这对我有用。