Home > php教程 > PHP源码 > body text

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

WBOY
Release: 2016-06-08 17:25:47
Original
1154 people have browsed it
<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 "上传文件成功!";
  }
}
Related labels:
source:php.cn
Statement of this Website
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
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!