php文件上传move_uploaded_file函数

在php中要上传文件那简单的利用move_uploaded_file() 函数将上传的文件移动到新位置,若成功,则返回 true,否则返回 false.

语法:move_uploaded_file(file,newloc)参数 描述

file 必需,规定要移动的文件.

newloc 必需,规定文件的新位置.

PHP实例代码如下:

  1. <!doctype html public "-//w3c//dtd xhtml 1.0 transitional//en" "http://www.w3.org/tr/xhtml1/dtd/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.phpfensi.com/1999/xhtml">
  3. <head>
  4. <meta http-equiv="content-type" content="text/html; charset=gb2312" />
  5. <title>php文件上传函数</title>
  6. </head>
  7. <body>
  8. <form enctype="multipart/form-data" action="upload.php" method="post">
  9. <input type="hidden" name="max_file_size" value="30000" />
  10. <input name="userfile" type="file" />
  11. <input type="submit" value="send file" />
  12. </form>
  13. </body>
  14. </html>
  15. <?
  16. if( $_post )
  17. {
  18. if( uploadfile( "userfile" ) )
  19. {
  20. echo '文件上传成功';
  21. }
  22. else
  23. {
  24. echo '文件上传失败';
  25. }
  26. }
  27. //参数 $file 为前台file控件的name;
  28. function uploadfile($file)
  29. {
  30. $uploaddir = $_server[ 'document_root ']. '/www.phpfensi.com/uploadfile/ ';
  31. $file_name = $uploaddir.rand(1,1000000). ". ".fileextend($_files[$file][ 'name ']);
  32. if (move_uploaded_file($_files[$file][ 'tmp_name '],$file_name))
  33. {
  34. return true;
  35. }
  36. else
  37. {
  38. return false;
  39. }
  40. }
  41. ?>

提示和注释

注释:本函数仅用于通过 http post 上传的文件.

注意:如果目标文件已经存在,将会被覆盖.