首頁 > 軟體

在php中如何上傳檔案?

2019-12-13 03:44:35

本經驗介紹的是在php中如何上傳檔案?

1

新建一個表單,用於上傳檔案的。

<!DOCTYPE html>

<html>

<head>

<meta charset="utf-8"/>

<title>上傳檔案</title>

</head>

<body>

<form action="upload_file.php" method="post" enctype="multipart/form-data">

<label for="file">Filename</label>

<input type="file" name="file" id="file"></br>

<input type="submit" value="提交"></br>

</form>

</body>

</html>


2

新建一個用於處理檔案的php檔案,先設定字元集。


3

如果上傳的檔案有錯誤就顯示錯誤。


4

如果沒有錯誤,就顯示檔案的內容,首先顯示檔案的名稱。


5

顯示檔案的大小。

echo "type:".$_FILES['file']['type']."<br/>";


6

顯示檔案的大小和臨時儲存的位置。


7

在瀏覽器進行測試。

完整程式碼如下:

<?php

header("Content-type:text/html;charset=utf-8");

if($_FILES['file']['error']>0){

echo $_FILES['file']['error']."<br/>";

}

else{

echo "uoload:".$_FILES['file']['name']."<br/>";

echo "type:".$_FILES['file']['type']."<br/>";

echo "size:".$_FILES['file']['size']."<br/>";

echo "store in:".$_FILES['file']['tmp_name']."<br/>";

}

?>



IT145.com E-mail:sddin#qq.com