本文介绍了移动上传文件在PHP抛出错误localhost的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

第二个:
$ b

我的代码:

  

第二个参数



例如:

  $ dir ='images /'
$ file = $ _FILES ['fileinputname'] [tmp_name];
$ new_file_name ='foo.bar';

move_uploaded_file($ file,$ dir。$ new_file_name);


The file is not uploading can anyone explain how can I debug these errors.

Second one:

my code:

$dir = 'images/'
$file = $_FILES['fileinputname']['tmp_name'];

move_uploaded_file($file , $dir );
解决方案

The second argument of the move_uploaded_file needs to be a full path, including the file name.

For example:

$dir = 'images/'
$file = $_FILES['fileinputname'][tmp_name];
$new_file_name = 'foo.bar';

move_uploaded_file($file , $dir . $new_file_name);

这篇关于移动上传文件在PHP抛出错误localhost的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-28 22:13