文件上传_PHP

WBOY
WBOYOriginal
2016-06-01 12:30:21808browse



文件上传



 //检查是否有文件上传
 if(isset($UploadedFile))
 {
  //unlink($UploadedFile);
  print("本地 File: $UploadedFile
\n");
  print("名称: $UploadedFile_name
\n");
  print("大小: $UploadedFile_size
\n");
  print("类型: $UploadedFile_type
\n");
  print("
\n");
 }
?>








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
Previous article:目录操作_PHPNext article:PHP相关信息_PHP