移动上传文件在PHP抛出错误localhost [英] Move upload file in php throwing error localhost

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

问题描述


警告:move_uploaded_file():第二个参数copy()函数
不能作为
中的一个目录C:\xampp\htdocs\sanigo\my-account\Registerformcontroller.php on
21


第二个:
$ b


警告:move_uploaded_file():Unable在
中将
'C:\xampp\tmp\phpEB06.tmp'移动到'images /'C:\xampp\htdocs\sanigo\my-account\Registerformcontroller .php
21

我的代码:

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

move_uploaded_file($ file,$ dir);


解决方案

第二个参数



例如:

  $ 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.

Warning: move_uploaded_file(): The second argument to copy() function cannot be a directory in C:\xampp\htdocs\sanigo\my-account\Registerformcontroller.php on line 21

Second one:

Warning: move_uploaded_file(): Unable to move 'C:\xampp\tmp\phpEB06.tmp' to 'images/' in C:\xampp\htdocs\sanigo\my-account\Registerformcontroller.php on line 21

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的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆