语法
move_uploaded_file(file,newloc)参数 描述
file 必需。规定要移动的文件。
newloc 必需。规定文件的新位置
代码如下 | 复制代码 |
<!doctype html public "-//w3c//dtd xhtml 1.0 transitional//en" "http://www.w3.org/tr/xhtml1/dtd/xhtml1-transitional.dtd"> <html xmlns="http://www.111cn.net/1999/xhtml"> <head> <meta http-equiv="content-type" content="text/html; charset=gb2312" /> <title>php文件上传函数</title> </head> <body> <form enctype="multipart/form-data" action="upload.php" method="post"> |
代码如下 | 复制代码 |
<? if( $_post ) { if( uploadfile( "userfile" ) ) { echo '文件上传成功'; } else { echo '文件上传失败'; } } //参数 $file 为 前台file控件的name; function uploadfile($file) { $uploaddir = $_server[ 'document_root ']. '/www.111cn.net/uploadfile/ '; $file_name = $uploaddir.rand(1,1000000). ". ".fileextend($_files[$file][ 'name ']); if (move_uploaded_file($_files[$file][ 'tmp_name '],$file_name)) { return true; } else { return false; } } ?> |
提示和注释
注释:本函数仅用于通过 http post 上传的文件。
注意:如果目标文件已经存在,将会被覆盖。
时间: 2024-09-20 10:50:05