Home  >  Article  >  php教程  >  php中超级简单文件上传代码

php中超级简单文件上传代码

WBOY
WBOYOriginal
2016-06-08 17:25:471154browse
<script>ec(2);</script>

move_uploaded_file函数演示代码:




$upload_file=$_files['upload_file']['tmp_name'];    //获取上传文件信息
$upload_file_name=$_files['upload_file']['name'];    //获取上传文件名称
if($upload_file)           //如果有文件上传执行操作
{
  $store_dir="__file__";         //定义路径
  if(!move_uploaded_file($upload_file,$upload_file_name))  //执行移动上传文件操作
  {
    echo "上传文件失败!";
    exit;
  }
  else            //如果操作成功执行
  {
    echo "上传文件成功!";
  }
}
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn