/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);
Nota :
Folder /uploads mesti dibuat terlebih dahulu.
Atas ialah kandungan terperinci Muat naik fail bare-bones dalam php. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!