在PHP中,只需透過幾行程式碼,就能完成上傳單一和多個檔案的處理。 PHP檔案上傳功能允許上傳二進位和文字檔案。此外,您可以透過PHP身份驗證和檔案操作功能完全控制要上傳的檔案。
PHP 中的$_FILES
PHP全域$_FILES
包含檔案的所有資訊。在$_FILES
全域變數的幫助下,我們可以得到檔案名,檔案類型,檔案大小,臨時檔案名稱和與檔案相關的錯誤。
PHP $_FILES 是預先定義的陣列,用來取得透過 POST 方法上傳檔案的相關資訊。如果為單一檔案上傳,那麼 $_FILES
為二維陣列;如果為多個檔案上傳,那麼 $_FILES
為三維陣列。
1.建立一個 file.html
示範上傳文件,其中的程式碼如下:
<html> <head></head> <body></body> <form enctype="multipart/form-data" action="file.php" method="POST"> Send this file: <input name="userfile" type="file" /> <input type="submit" value="Send File" /> </form> </html>
2.新建一個用於接收文件資訊的PHP
檔案file.php
,程式碼如下:
<?php echo "<pre class="brush:php;toolbar:false">"; print_r($_FILES); ?>
3.在file.html
頁面選擇檔案後,按一下Send File
按鈕,將會在頁面輸出以下資訊:
Array ( [userfile] => Array ( [name] => 5a16984f62bc8364.jpg [type] => image/jpeg [tmp_name] => C:\Windows\php3F2.tmp [error] => 0 [size] => 47611 ) )
以上是如何利用PHP中的 $_FILES上傳文件的詳細內容。更多資訊請關注PHP中文網其他相關文章!