PHP 檔案上傳:限製檔案類型
處理檔案上傳時,驗證上傳檔案的類型和大小至關重要,以確保安全性和安全性。保持預期的功能。提供的程式碼旨在透過檢查檔案副檔名、類型和大小來實現此目的。但是,它有一些問題。
原始程式碼的問題:
解決方案:
為了解決這些問題,我們可以利用 mime 類型進行文件驗證並單獨檢查大小限制。
更新的程式碼:
<code class="php">function allowed_file() { // Allowed mime types $allowed = array('application/doc', 'application/pdf', 'another/type'); // Validate file type using mime type if (in_array($_FILES['resume']['type'], $allowed) && in_array($_FILES['reference']['type'], $allowed)) { // Validate file size if ($_FILES["resume"]["size"] < 400000 && $_FILES["reference"]["size"] < 400000) { // Files are allowed; proceed with upload process... } } }</code>
說明:
以上是如何安全地限制 PHP 檔案上傳中的檔案類型?的詳細內容。更多資訊請關注PHP中文網其他相關文章!