>  기사  >  백엔드 개발  >  PHP로 기본 파일 업로드

PHP로 기본 파일 업로드

Barbara Streisand
Barbara Streisand원래의
2024-11-19 21:57:03269검색

Bare-bones file upload in php

HTML 양식

/index.html :

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>Document</title>
  </head>
  <body>
    <form method="post" action="upload.php" enctype="multipart/form-data">
      <label for="file-label">File : </label>
      <input type="file" name="myfile">



<h3>
  
  
  File Upload Handler
</h3>

<p>/upload.php :<br>
</p>

<pre class="brush:php;toolbar:false"><?php
$tempFile = $_FILES['myfile']['tmp_name'];
$fileName = $_FILES['myfile']['name'];

$fileDestination = __DIR__."/uploads/".$fileName;

copy($tempFile, $fileDestination);

unlink($tempFile);

참고:
/uploads 폴더가 미리 생성되어 있어야 합니다.

위 내용은 PHP로 기본 파일 업로드의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.